0.1.3 • Published 2 years ago

@saeidjoker/ts-node-template v0.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

ts-node-template

Screenshot 2022-07-18 234510

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!