⭐⭐⭐⭐Don't Forgot to Star ⭐⭐⭐⭐
Installation, Starting of all tools and learning
Table of Contents |
---|
JavaScript |
ES6 & Typescript |
Json |
MongoDB |
ReactJS |
Angular |
NodeJS |
ExpressJS |
Installation & Set up
Check First this :
npm -v
node -v
- Create First Project Of React
npx create-react-app .
npm start
OR
npx create-react-app app-name
cd app-name
npm start
Angular CLI
npm install -g @angular/cli
ng v
Create Angular Project
ng new app-name
Compile & Run
cd app-name
ng serve
Installation Globally [node is required]
npm install -g typescript
tsc -v
Run .ts file
tsc filename.ts
node filename.js
ts-node module
npm install -g ts-node
ts-node filename.ts
Installation & Setup :
-
MongoDB (Server) | Set Path of bin folder in Environment Variable
-
mongosh (Client) | Set Path of bin folder in Environment Variable
mongod
mongosh
show dbs
MongoDB.-.Installation.mp4
Use Particular Database :
use databasename
Get All Collections :
db.getCollectionNames()
Create
db.collectionName.insertOne()
db.collectionName.insertMany()
db.collectionName.insertOne({
"name": "San",
"email": "san@gmail.com"
})
db.collectionName.insertOne({
name: "San",
email: "san@gmail.com"
})
Read
db.collectionName.find()
db.collectionName.find().pretty()
Update
db.collectionName.updateOne()
db.collectionName.updateMany()
db.collectionName.update()
Delete
db.collectionName.deleteOne()
db.collectionName.deleteMany()
db.collectionName.delete()
Intall module for Connect MongoDB with NodeJS
npm i mongodb
ORnpm i mongoose
npm i express