- Implement Tic Tac Toe CLI game using Node.js
x | o | x ---+---+--- o | x | o ---+---+--- 7 | 8 | 9 x = █
Run npm install
to install dependencies
Run npm start
to start the project
The application will automatically restart if you change any of the source files
Run npm run build
to build the project. The build artifacts will be stored in the dist/
directory
Run npm test
to execute unit tests
Run npm run test-watch
to execute unit tests in watch mode
Run npm run coverage
to generate coverage report
Run npm run lint
for code quality checks.
Run npm run lintfix
for code quality fixes. It happens automatically in pre-commit hook.
Run npm run update
to update libraries to the latest versions.