@matrixai/logger

Python-like JavaScript Logger

Usage no npm install needed!

<script type="module">
  import matrixaiLogger from 'https://cdn.skypack.dev/@matrixai/logger';
</script>

README

js-logger

pipeline status

This library provies a JavaScript logger that is similar to the Python logger.

Installation

npm install --save @matrixai/logger

Development

Run nix-shell, and once you're inside, you can use:

# install (or reinstall packages from package.json)
npm install
# build the dist
npm run build
# run the repl (this allows you to import from ./src)
npm run ts-node
# run the tests
npm run test
# lint the source code
npm run lint
# automatically fix the source
npm run lintfix

Publishing

# npm login
npm version patch # major/minor/patch
npm run build
npm publish --access public
git push
git push --tags