A GitHub repo template for TypeScript projects
For the best results, make sure you have the correct version of node installed:
nvm install v18.19.1
# create the repo and clone it
gh repo create my-awesome-project \
--template nielse63/typescript-repo-template \
--clone
cd my-awesome-project
# run the setup script
npm run setup
# clone the repo into a custom directory
git clone https://github.com/nielse63/typescript-repo-template my-awesome-project
cd my-awesome-project
# run the setup script
npm run setup
script | desription |
---|---|
npm test |
run unit tests with jest |
npm start |
execute the module from ./dist |
npm run dev |
execute the module from ./src |
npm run lint |
format and lint files |
npm run build |
compile source to ./dist |
npm run docs |
build API docs |
npm run release |
release package to npm and github |
.bin/scripts
to it's own packageSee the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b scratch/my-feature
)git commit -m 'added new feature'
)git push origin scratch/my-feature
)Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/nielse63/typescript-repo-template
Generated using TypeDoc