@saeidjoker/ts-node-template
v0.1.3
Published
A simple ts-node template with prettier, nvmrc and eslint
Downloads
1
Readme
ts-node-template
A simple npx template for typescript node applications with prettier, nvmrc, eslint and nodemon.
Features
- Typescript
- Eslint
- Prettier formatting
- Using NVM to fix node version to latest LTS version
- Example .gitignore
- Live reloading with nodemon
Publish
- Update package.json version
- npm publish
Usage
# make sure have node version > 16.x
# cd into your repository root
npm init -y
npx @saeidjoker/ts-node-template@latest
After that, you can test your app with this command
npm run start:dev
This will print hi
on the console. You can change the contents of src/index.ts
and save the file and the app will cold-reload :-)
Enjoy!