Basic url shortener with Express, Typescript, EJS and Redis
To install dependencies:
bun installTo run:
bun run src/index.tsThis project was created using bun init in bun v1.1.15. Bun is a fast all-in-one JavaScript runtime.
.
├── bun.lockb
├── package.json
├── README.md
├── src
│ ├── config
│ │ └── db.ts
│ ├── index.ts
│ ├── murl.ts
│ ├── static
│ │ ├── fonts
│ │ └── styles.css
│ └── views
│ ├── Footer.ejs
│ ├── head.ejs
│ ├── index.ejs
│ └── template.ejs
└── tsconfig.json
6 directories, 12 files