A pre-configured Typescript initial framework for creating NPM libraries and modules
This project is the basis for creating your libraries and APIs!
You just clone the repository:
$ git clone https://github.com/wnqueiroz/typescript-lib-boilerplate.git <MY_PROJECT>
And start working on your codes at: <MY_PROJECT>/src
- TypeScript ✅
- Prettier + TSLint (soon a version with ESLint) ✅
- Focus on development experience; 😍
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
The project build can be done with the following command::
$ npm run build
The project will be compiled in JS in
<MY_PROJECT>/dist
folder
William Queiroz
Copyright © 2020, William Queiroz. Released under the MIT License.