KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
url-shortener
★ 17
Open GitHub ↗
a url shortener.
Download README (.md)
Explore Similar Repositories
rovit
:
RO-ViT CVPR 2023 "Region-Aware Pretraining for Open-Vocabulary Object Detection with Vision Transformers"
bin-pack
:
3d bin packing
sqids-dart
:
Official Dart port of Sqids. Generate short unique IDs from numbers.
kNN-TL
:
[ACL 2023] kNN-TL: k-Nearest-Neighbor Transfer Learning for Low-Resource Neural Machine Translation
Burrn
:
Built-in particle system for GameMaker, that uses the particle asset
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
url-shortener
?
Download (.md)
<p align="center"> <img src="https://raw.githubusercontent.com/MicaelliMedeiros/micaellimedeiros/master/image/computer-illustration.png"/> <img src="https://img.shields.io/badge/TypeScript-black?style=for-the-badge&logo=typescript&logoColor=white"/> </p> # building **• cloning** ```bash git clone https://github.com/Swag666baby/url-shortener cd url-shortener ``` **• running** ```bash yarn tsc node dist/server ``` ### example of use ```javascript const axios = require("axios"); async function shortener(){ const request = await axios.post("http://localhost:3000/shorter", {"url": "https://github.com"}) console.log(request.data) } shortener() ```