https://github.com/janoside/links-app
Simple link organizing app.
https://github.com/janoside/links-app
links personal search tagging
Last synced: about 1 month ago
JSON representation
Simple link organizing app.
- Host: GitHub
- URL: https://github.com/janoside/links-app
- Owner: janoside
- License: mit
- Created: 2021-01-01T16:44:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2026-02-08T20:51:48.000Z (6 months ago)
- Last Synced: 2026-02-08T21:41:21.564Z (6 months ago)
- Topics: links, personal, search, tagging
- Language: JavaScript
- Homepage: https://links.rest
- Size: 2.56 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Links App
A link organizing app.
Add links, descriptions, tags. Search.
## Testing
This project uses Node's built-in test runner (`node:test`), so no extra test framework dependency is required.
- Run all tests once:
- `npm test`
- Watch mode (re-run on file changes):
- `npm run test:watch`
- Run tests with coverage:
- `npm run test:coverage`
- Run the old image debugging script (previously `npm test`):
- `npm run test:image-debug`
Tests live in `/test` and use `*.test.js` naming so Node discovers them automatically.
The suite includes unit tests, route integration tests, and core-flow tests with DB/S3 test doubles.
For a full walkthrough, see `/docs/testing.md`.