Skip to content

matheushrt/echo-server

Repository files navigation

A starter structure, scripts and packages to build a Node.js application with TypeScript and Babel in no time!

How to get started

  • clone the repo
  • Inside project's root folder: npm install
  • To start developing: npm run dev
  • Then check your localhost:4000 to see that you're All set!

You can also use npm run validate to ensure that your code is good go. It will run TypeScript to check your types, Prettier to check if your formatting follows the project's standard, ESLint to check if you are following all linting rules and finally build your code to check for any errors thrown.

The project already uses husky and lint-staged to run the above checkings as a pre-commit hook, ensuring better commits.