Skip to content

Latest commit

 

History

History
84 lines (56 loc) · 1.95 KB

README.md

File metadata and controls

84 lines (56 loc) · 1.95 KB

Sequence

  • Javascript
  • HTML
  • CSS
  • Media Queries
  • DOM Manipulation
  • React

Javascript

Lecture - 1

Lecture 03

Lecture 04

Lecture 06

Lecture 15

  • npm init -y -> create empty npm package
  • npm i nodemon -> install nodemon
  • Add nodemon index.js to scripts
  • Install other needed dependancies.

Lecture 16

  • Install mongodb community server and mongosh
  • mongod --dbpath=[path_to_dir]
  • mongosh to run the Mongo Shell
  • show dbs to show list of dbs
  • use [dbname] to select a db
  • db.[collection_name].insertOne({})
  • db.[collection_name].find({})

Lecture 27

Lecture 28

  • Postgress
  • Import and Export
  • Stored Procedures and Triggers
  • Dump and restore
  • USER Management
  • DB Management

Lecture 30