Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 771 Bytes

File metadata and controls

47 lines (33 loc) · 771 Bytes

logo

Sample node module template by Tib0. Shipped with:

  • Github's actions
  • VSCode config
  • Node config
  • TypeScript
  • Prettier
  • Eslint
  • Pnpm
  • Tsup
  • Jest

USE

Follow these steps to make it yours :

  1. Clone the repository :
git clone https://github.com/tib0/typescript-node-module-template.git
  1. Update package.json entries (author, name...)
code typescript-node-module-template\package.json
  1. Rename folder typescript-node-module-template to whatever suit your needs.
mv typescript-node-module-template\ <target name>\
  1. Remove git history :
rm -rf .git && git init && git add . && git commit -m "Initial commit"
  1. Push :
git push