Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kartik-gupta-ij/coursera
🌏 This repo contain the entire code for the "Full-Stack Web Development with React (coursera)" offered by The Hong Kong University of Science and Technology.
https://github.com/kartik-gupta-ij/coursera
authentication bootstrap express mongodb node
Last synced: 23 days ago
JSON representation
🌏 This repo contain the entire code for the "Full-Stack Web Development with React (coursera)" offered by The Hong Kong University of Science and Technology.
- Host: GitHub
- URL: https://github.com/kartik-gupta-ij/coursera
- Owner: kartik-gupta-ij
- Created: 2022-05-05T19:20:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T07:51:09.000Z (over 1 year ago)
- Last Synced: 2023-03-04T21:08:10.016Z (over 1 year ago)
- Topics: authentication, bootstrap, express, mongodb, node
- Language: JavaScript
- Homepage: https://www.coursera.org/specializations/full-stack-react
- Size: 3.42 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coursera
## Installing json-server
* json-server is a node module, and hence can be installed globally by typing the following at the command prompt:```bash
npm install json-server -g
```* If you are using OSX or Linux, use sudo at the front of the command. This will install json-server that can be started from the command line from any folder on your computer.
## Configuring the Server
* At any convenient location on your computer, create a new folder named json-server, and move to this folder.* Download the db.json file provided above to this folder.
* Move to this folder in your terminal window, and type the following at the command prompt to start the server:
```bash
json-server --watch db.json -p 3001 -d 2000
```## Installing Web-server
* Open React/confusion folder in your terminal window, and type the following at the command prompt to Installing the server:```bash
npm install
```
## Configuring the Server* After seting-up web server type the following at the command prompt to start the server:
```bash
npm start
```