Package Exports
- justwords-node
- justwords-node/lib/main/index.js
- justwords-node/lib/module/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (justwords-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Just Words Node SDK
Typescript library for Just Words (YC W24).
Installation
npm i justwords-node
Development
- Compiles TypeScript code using both the
tsconfig.json
andtsconfig.module.json
files. - Formats TypeScript code using Prettier.
- Lints TypeScript code using ESLint.
- Runs unit tests using AVA.
- Generates code coverage reports using NYC.
- Generates HTML documentation using TypeDoc.
- Uses Husky Git hooks and Lint-staged pre-commit hooks.
Install the dependencies:
npm install
There are several scripts available to help you get started:
Compile the TypeScript code using both the tsconfig.json
and tsconfig.module.json
files.
npm run build
Formats the TypeScript code using Prettier and lints the code using ESLint, fixing any issues found.
npm run fix
Lints the TypeScript code using ESLint, checks the code formatting using Prettier, and runs the unit tests using AVA.
npm run scripts
Watches for changes in the TypeScript code and recompiles the code using tsconfig.json
.
npm run watch:build
Watches for changes in the TypeScript code and re-runs the unit tests using AVA.
npm run watch:scripts
Generates an HTML report of the code coverage using NYC and opens the report in the browser.
npm run cov
Generates HTML documentation of the TypeScript code and opens the documentation in the browser.
npm run doc
The template uses Husky and Lint-staged to run pre-commit hooks that ensure your code is formatted, linted, tested, and documented before committing.
For more information on available scripts, see the Scripts
section of the package.json
file.
Contributing
To contribute to the project, please follow the guidelines for submitting issues and pull requests.
License
This project is licensed under the MIT License.
Acknowledgements
This project uses Prettier, ESLint, AVA, NYC, Husky, Lint-staged, TypeDoc.