https://github.com/scriptraccoon/svt.ink
This is a URL shortener made with SvelteKit and MongoDB.
https://github.com/scriptraccoon/svt.ink
Last synced: over 1 year ago
JSON representation
This is a URL shortener made with SvelteKit and MongoDB.
- Host: GitHub
- URL: https://github.com/scriptraccoon/svt.ink
- Owner: ScriptRaccoon
- License: mit
- Created: 2023-05-10T07:16:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T21:04:13.000Z (about 2 years ago)
- Last Synced: 2024-05-30T16:50:02.604Z (about 2 years ago)
- Language: Svelte
- Homepage: https://svtink.netlify.app/
- Size: 123 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Svt.Ink
This is a URL shortener made with SvelteKit and MongoDB.
https://svtink.netlify.app/
(The previous URL, https://svt.ink, will not work anymore.)
## Schema
Redirection Schema in MongoDB:
- shortcut: `string`
- url: `string` (validated as URL)
- visits: `number` (will be incremented with each visit)
- createdAt: `timestamp`
- updatedAt: `timestamp` (gets updated with each visit)