Quick start template to use NodeJS + TypeScript in a coding interview.
- TypeScript
- All "strict" rules enabled
- Type errors will not block your code from running
- ESLint
- Format on save with Prettier
- Launch profile with debugger support
Make sure you have NodeJS and npm installed. See nvm for easy installation instructions.
git clone [email protected]:xsznix/interview-starter-nodejs.git my-interview
cd my-interview
npm install
- Open the repo root in VS Code
- Install workspace-recommended extensions
- Go to "Run and Debug" tab
- Click the green arrow at the top to run/debug the program
If not using VS Code, run the program using the command npm run start
from the repo root.