Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/abtaaahi/node.js
- Owner: abtaaahi
- Created: 2024-08-20T15:52:16.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-21T18:23:32.000Z (3 months ago)
- Last Synced: 2024-08-22T10:16:18.184Z (3 months ago)
- Topics: express, javascript, nodejs
- Language: JavaScript
- Homepage: https://chatgpt.com/share/3fa0c3be-c4e7-43de-9420-646e3ef0ebf0
- Size: 4.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```