https://github.com/iiivanpopov/express-notes
Simple NodeJS Web App. You can create, delete, update notes.
https://github.com/iiivanpopov/express-notes
expressjs json jsonwebtoken postgresql
Last synced: 2 months ago
JSON representation
Simple NodeJS Web App. You can create, delete, update notes.
- Host: GitHub
- URL: https://github.com/iiivanpopov/express-notes
- Owner: iiivanpopov
- Created: 2025-09-21T14:18:06.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-27T13:52:30.000Z (10 months ago)
- Last Synced: 2025-10-09T06:25:05.425Z (9 months ago)
- Topics: expressjs, json, jsonwebtoken, postgresql
- Language: JavaScript
- Homepage:
- Size: 953 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tech stack
## Packages used
- express: backend framework
- express-validator: request validating body and params
- uuid: generating uuid v4 for notes
- pg: postgresql driver
- dotenv: .env file parser
- jsonwebtoken: generate and validate tokens
- argon2: secure hash
# Installation
1. Configure `.env` file using `.env.example` template
2. Create `database.json` file using `database.example.json` template
3. Migrate database
```bash
npm run db:migrate
```
4. Run server
```bash
npm run start:dev
```
# Showcase
## Dashboard

## Login

## Register
