Sample node module template by Tib0. Shipped with:
- Github's actions
- VSCode config
- Node config
- TypeScript
- Prettier
- Eslint
- Pnpm
- Tsup
- Jest
Follow these steps to make it yours :
- Clone the repository :
git clone https://github.com/tib0/typescript-node-module-template.git- Update package.json entries (author, name...)
code typescript-node-module-template\package.json- Rename folder
typescript-node-module-templateto whatever suit your needs.
mv typescript-node-module-template\ <target name>\- Remove git history :
rm -rf .git && git init && git add . && git commit -m "Initial commit"- Push :
git push