Skip to content

sfmohassel/ts-node-template

Repository files navigation

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

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!