This is a toy url shortener β a web application that creates short URL's from long ones.
- Shorten URLs via API
- Check that URLs have
http://
prepend, so you don't redirect to localhost - Check that URLs don't have user and password information by accident
- Check that URLs have
- Redirect from short URL to original URL
- Return a basic redirect
- Redirect with HTML that contains a simple text message
- Return 404 status when failed to find code
- Web app
- Error page for invalid URL
- Error page for auth leaked error
- CSS styling
- Internal error 500 page
- Caching (Redis)
- Gradefully handle disconnect from Postgresql or Redis at runtime
- Health checks
- Tighter validation
- Error reporting (Sentry)
- Containerize (Docker)
- REST API documentation
- Automatic horizontal scaling (Kubernetes or just AWS EBS?)
- Monitoring (Prometeus + Grafana?)
- Write diagnostic logs
- Logs collection (AWS Cloudwatchs / ELK)
- Rate limiting (probably on Nginx/CDN, not in the app)
- Client-side URL validation
- Localization
- Custom short URL
- Multiple domains
- QR Code generation
- User login/registration - separate service and db?
- Editing links (for logged in users) - Kafka for cache layer update
- Analytics (Kafka + Clickhouse)
To start the project:
- Make sure you have local Node and NPM. This project uses Node 14
- Launch Postgresql database
- (optional) Launch Redis
- Provide Postgresql connection details and other parameters in environment variables or .env file (see below)
- Run command
npm install && npm build && npm start
- Launch Postgresql database
- (optional) Launch redis
- Build the docker image:
docker build -t url-shortener .
- Provide Postgresql connection details and other parameters in environment variables or .env file (see below)
- Run docker image:
docker run --env-file .env -dp 80:80 --network bridge url-shortener
Please, be vary that if you run Postgresql and Redis from docker as well, they're exposed as 127.0.0.1 to your machine, but to other docker VMs on the same network (typically, bridge
), they can have different IP addresses. Use this resource to debug these network connectivity issues.
- build β builds all the javascript files
- start β runs the javascript files
- lint β highlights all the lint errors
- lint:fix β as above, but also fixes everything that it can automatically
- test β runs all the tests. Please remember that tests rely on Postgresql database.
- typegen β checks all the SQL queries and generates types for them
- migrate β runs all pending migrations
Typical workflow when updating something with database would be first to edit migrations in migrations
folder and queries in your code, and then run migrate
, typegen
and lint:fix
scripts.
To run various scripts locally, you should defined environment variables. However, because this project uses env-cmd
, you can create a local .env
file (ignored by git) instead. Here's what it should look like:
# Postgresql connection details
# https://www.postgresql.org/docs/9.1/libpq-envars.html
PGHOST=127.0.0.1
PGUSER=postgres
PGPASSWORD=password
PGDATABASE=url-shortener
PGPORT=5432
PORT=8080
# Port and hostname of the app
PORT=80
HOSTNAME=http://localhost:80
# Node environment - production or development
NODE_ENV=production
# Redis connection URL
REDIS_URL=redis://127.0.0.1:6379
This is my boilerplate. There are many like it, but this one is mine.
- Typescript β compiler for Typescript files, so I can use Typescript
- Prettier β code formatter, so my code is pretty (used with ESLint, below)
- Jest - testing framework, so I can have tests
- TS-Jest - Typescript pre-processor for Jest, so I can have Typescript tests
- ESLint β linter, to keep my code nice, with plugins:
- Prettier plugin
- Prettier config
- Promise plugin
- Jest plugin
- Import plugin
- Promise plugin
- Typescript plugin
- Typescript parser
- Husky β git hook integration, to force linter to run before commit
- lint-staged β to run linter only on staged files
- Source map support β so that my stacktraces show my Typescript traces
- env-cmd β so I can use project-specifig .env files
- Express - standard router and server. It's industry standart, but I'm a bit unhappy with it's liberal use of
any
and should probably find a better alternative one of those days. - Supertest β to build tests on express
- pg β the standard node-postgres driver
- pgtyped β I dislike ORMs, but I like type safety and checking my code at compilation time instead of run rime. This library allows me to pre-compile my SQL queries against a development database, check them for errors and save type information in my proejct.
- postgres-migrations β miminalistic migrations library that have never let me down. Not having down migrations does make development a bit harder, but I still think it's a good decision overall.
- pg-tx - minimalistic node-pg transaction wrapper that I wrote. However, I only use transactions for integration tests.
- ioredis - Redis driver
- normalize-url - helps handling client-provided URLs that may be incomplete
- pug - templating engine
- Bulma β very simple CSS framework so my web pages look just a little bit more sofisticated than c2.com
Retrieves an original URL by it's short variant.
- Url:
api/v1/url
- Method: GET
- Parameters (query):
shortUrl
β short url (http://localhost/abcde
)domain
β domain (http://localhost
)alias
β alias (abcde
)
- Returns (json):
- Success (200)
short
β short urloriginal
β origianl url
- URL not found (404)
errrors
-['alias_not_found']
- Request error (400)
errors
β one or more errors with provided datainvalid_parameter_set
β invalid parametersinvalid_domain
invalid_short_url
- Success (200)
When using this api, request should have either shortUrl
, or domain
and alias
parameters.
Shortens a url.
- Url:
api/v1/shorten
- Method: POST
- Parameters (json):
url
β original url to be encoded- (optional)
domain
β which of the available domains to use - (optional)
alias
β what alias to use
- Returns (json):
- Success (200)
short
β short urloriginal
β original url
- Request error (400)
errors
β one or more errors with provided data
- Success (200)
Lists all domains available for the service
- Url:
api/v1/domains
- Method: GET
- Parameters: none
- Returns (json):
domains
β list of available domains
Project is split into routes, providers and services. Providers are responsible for storage (Postgresql and Redis), routes for interacting with user, and services for business logic.
As a result, I have shorten.ts
service, shorten.ts
api route and shorten.ts
www route. To be honest, it looks quite silly. I should probably medidate on how build this kind of architecture in less of an architecture-astronaut type of way.
Since I want app to be integration tested with cancelled transactions, I want to inject database client instance into all routes. But since there aren't many routes and dependencies, I decided not to use any DI frameworks and just use simple class constructors instead.