Implemented a clone of Amazon.com ecommerce website. Used the MERN tech stack for the Development process.
Currently the website is hosted on the private server only. Production build will be deployed in due course.
Frontend URL - Open http://localhost:3000
Backend URL - Open http://localhost:5000
For detailed instructions to install and run the REACT application, please check the README file in the /frontend folder
Checkout.Process.mp4
Major Project_Udayan Gupta_Full Stack December Batch.pdf
Fast, unopinionated, minimalist web framework for Node.js.
const express = require('express')
const app = express()
app.get('/', function (req, res) {
res.send('Hello World')
})
app.listen(3000)
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js. Node.js 0.10 or higher is required.
If this is a brand new project, make sure to create a package.json
first with
the npm init
command.
Installation is done using the
npm install
command:
$ npm install express
Follow our installing guide for more information.