Merged into InCodeDevs/InCode
A simple way to short urls
Install @incodelang/urlshorter with npm
npm install @incodelang/urlshorterInstall @incodelang/urlshorter with yarn
yarn add @incodelang/urlshorterIntegrate in your own express.js application
const { urlServer } = require('@incodelang/urlshorter')
const express = require('express')
const app = express();
app.listen(3000, "0.0.0.0");
urlServer({
app: app,
prefix: "app" // prefix of the shorted urls
})Standalone express.js application
const { urlServer, sampleApp } = require('@incodelang/urlshorter')
urlServer({
app: sampleApp(
3000, // port [default] = 3000
"0.0.0.0" // host [default] = "0.0.0.0"
),
prefix: "app" // prefix of the shorted urls
}) GET /api/v1/url/create| Parameter | Type | Description |
|---|---|---|
target |
string |
The url target |
Returns a JSON Object with the fields error, message and id
GET /{prefix}/{id}