This is a simple Node.js Starter
using TypeScript.
.vscode/launch.json
: Configuration for debugging with VSCode..vscode/tasks.json
: Configuration for TypeScript tasks in VSCode..gitignore
: Specifies files and directories to be ignored by Git..prettierrc
: Configuration for Prettier code formatter.src/index.ts
: Entry point of the application.eslint.config.mjs
: Configuration for ESLint.tsconfig.json
: TypeScript compiler options.package.json
: Project metadata and dependencies.
- Node.js
- npm
- Clone the repository:
git clone
cd nodets
- Install dependencies:
npm install
To start the application:
npm start
To start the application with Nodemon for automatic restarts:
npm run nodemon
To watch for TypeScript changes and compile automatically:
npm run tsc:watch
To lint the code using ESLint:
npm run lint