Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abtaaahi/node.js

Fundamentals of Node.js with Small Projects
https://github.com/abtaaahi/node.js

express javascript nodejs

Last synced: about 12 hours ago
JSON representation

Fundamentals of Node.js with Small Projects

Awesome Lists containing this project

README

        

### Command Prompt

```
mkdir folder-name
```
```
cd folder-name
```
```
npm init -y
```
```
npm install express
```
```
touch index.js
```
```
code .
```
```
cmd file explorer
```
```
clear
```
```
echo "[]" > todos.json
```

### Git Commands

```
git init
git add .
git commit -m "first"
git branch -M main
git remote add origin (link)
git push -u origin main
```
```
git status
```
```
git add .
```
```
git commit -m "name"
```
```
git push origin main
```
```
npm uninstall
```
```
npm prune
```