This page contains all of the material of my Web Technologies Classes. Feel free to bookmark download or distribute its content its all free. Join my classes for a roller coaster ride.
Always keep in mind I am not a guru. Please keep me posted with anything which you know and I don’t.
https://usman-recipes.herokuapp.com/
Express CRUD with EJS (Server Side and No React)
complete-example This is a super simple example connecting node with react.
minicab-server A full functional node api built with Node and Express Generator
Express App Generator Clean Install Repo
We Would be building A movie Rental App, Complete Code can be downloaded from here
MERN Stack Technology OverView
Hand Picked tutorials
How to use Command Prompt for beginners
Mastering Wrapping of Flex Items
How to deploy a create-react-app with an Express backend to Heroku
File Upload With Multer in Node.js and Express
Using HTTP Methods for RESTful Services
Heroku Deployment Sequece
only once
heroku login
git init
then
git add -A ; git commit -m ‘Adjustments’ ; git push heroku master ; heroku logs –tail
Sample API to work with
Base URL: https://usman-vidly.herokuapp.com/api/
Method | URL | Description |
---|---|---|
POST | /users | { |
POST | /auth | { “email”:”[email protected]”, “password”:”usman” } |
GET | /users/me | set x-auth-token generated from login
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI1Y2FkYzMyZmJiZWZhNDAwMTZhZmYxZTIiLCJpc0FkbWluIjp0cnVlLCJpYXQiOjE1NTQ4OTMwMTV9.Gyf-aXG1Yb6w2u-l_KsZopRXStxSr-YgvqAYMfrozNs |
GET | /movies | get all movies |
GET | /generes | get all generes |
POST | /geners | { “name”:”Pakistani Drama” }also set x-auth-token |
PUT | genres/5cadcc4dbbefa40016aff1ea | Modify genre by ID set name |
GET | genres/5cadcc4dbbefa40016aff1ea | get One Genre |
DELETE | genres/5cadcc4dbbefa40016aff1ea | Delete One Genre |