React.js + Node.js + MongoDB project with Aho–Corasick algorithm implementation on backend. This is the Node.js backend part.
$ npm install
There is a docker-compose.yml file for starting MongoDB database docker container.
$ docker-compose up
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov