/node_js_backend

this is a simple website with a secure login system based n node js

Primary LanguageJavaScript

This is the V2 of my base of site

💼 Technologies and Tools:

nodejs mongodb html CSS javascript


👨‍💻 About This Project:

this is a simple site with a secure backend with a handmade authentification system / session manager this project is build using NodeJs and MongoDB


Installation

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

Usage

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