Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thesephist/zone
A URL shortener / note sharing service.
https://github.com/thesephist/zone
express nodejs notes url-shortener
Last synced: about 16 hours ago
JSON representation
A URL shortener / note sharing service.
- Host: GitHub
- URL: https://github.com/thesephist/zone
- Owner: thesephist
- License: mit
- Created: 2018-10-06T06:07:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-26T20:42:30.000Z (over 2 years ago)
- Last Synced: 2023-03-02T12:41:41.672Z (over 1 year ago)
- Topics: express, nodejs, notes, url-shortener
- Language: JavaScript
- Homepage: https://linus.zone
- Size: 112 KB
- Stars: 20
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# linus.zone
A URL shortener / note sharing service, running at [linus.zone](https://linus.zone).
## Setup
To start `zone`:
1. Make sure you have `npm` installed, and install dependencies with `npm install` or `yarn install`
2. Create a `.env` file with your global password (see below note), `PASSWORD=`
3. `npm start` or `yarn start` to start the server.### Note on a global password and spam prevention
I wrote this app a while ago, and still run it in production for my personal use at linus.zone. It used to be open for anyone to use, but I started running into problems with spam, with scammers trying to use this redirector to mask their real domains. This is obviously problematic in many ways, but I didn't want to add a fully-fledged auth system to the app, so for now I've set a global secret password, defined in a `.env` file, so that only those with that single password can edit the link shortener database.
It's not an elegant solution, but it took a few minutes and worked for me, without adding any complexity.
This means that, if you want to run this on your own, you also either need to set a `PASSWORD` in an `.env` file, or remove the global-password-checking logic from `src/main.js` (grep for `isAuthorizedUser`).
## Todo's
- [ ] Avoid sanitizing dangerous HTML tags if they're rendered inside code snippets. This may require is to restructure our sanitizer so we sanitize on render and not save.
- [ ] Ability to see all created uris and notes as links under one page (`/all`), password-authenticated