Skip to content

GUVICommunity/KCG-MERN-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

KCG-MERN workshop

Nodejs download link:

https://nodejs.org/en/download

mongodb server download link:

https://www.mongodb.com/try/download/community

mongodb compass download link:

https://www.mongodb.com/try/download/compass

Note: By default mongodb server runs on port: 27017

Mongodb localhost connect URL:

mongodb://localhost:27017/<database name>

Visual Studio Code download link:

https://code.visualstudio.com/download

Basic npm commands:

To create a new nodejs project:

npm init <project name>

To install npm packages:

npm install <module name>

To create a project from package:

npm create <package name>

To run a script defined on package.json:

npm run <script name>

To run a package without installing:

npx <package name>

Install express:

npm install express

Install mongodb odm driver for express:

npm install mongoose@5.13.22

Create React.js project using vite:

npm create vite <project name> -- --template react

References:

CORS (Cross-Origin Resource Sharing): https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

Guides to install mongodb server:

Video Guides

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors