Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 2.29 KB

README.md

File metadata and controls

51 lines (43 loc) · 2.29 KB

Link Cleaner

GitHub Website Website

Remove spaces and emojis from your links.


Features

✔️ Link cleaning with regex
✔️ Adding link to database
✔️ See all links added to database
✔️ Infinite scrolling
🔵 Real-time update
🔵 Open graph
🔵 Comments to links

Stack

Installation

  1. Install NodeJS

  2. Clone this repo or download it

  3. Use .env.sample files to create .env files

  4. Install dependencies (run this in the root of the project)

cd server && npm i && cd .. && cd client && npm i && cd ..
  1. Start server and client (run this in the root of the project)
start npm start --prefix server && start npm start --prefix client

Regex used for cleaning process

/( |\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])/g

See in code