this is a simple site with a secure backend with a handmade authentification system / session manager this project is build using NodeJs and MongoDB
Use the package manager npm to install required dependencies.
npm i
setup MongoDB using the Guide on their site
if you want to use nodemon you'll have to install it globally:
npm install -g nodemon # or using yarn: yarn global add nodemon
You can also install nodemon as a development dependency:
npm install --save-dev nodemon # or using yarn: yarn add nodemon -D
possible commands are :
# run with nodemon to auto reload the code
npm run dev
# run in production
npm run start
# check lint errors
npm run lint
# auto fix lint errors
npm run lintfix