Skip to content

deadboyccc/nodets

Repository files navigation

NodeTS Starter

This is a simple Node.js Starter using TypeScript.

Project Structure

  • .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.

Getting Started

Prerequisites

  • Node.js
  • npm

Installation

  1. Clone the repository:
git clone 
cd nodets
  1. Install dependencies:
npm install

Running the Application

To start the application:

npm start

To start the application with Nodemon for automatic restarts:

npm run nodemon

Development

To watch for TypeScript changes and compile automatically:

npm run tsc:watch

Linting

To lint the code using ESLint:

npm run lint

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published