0.1.0 • Published 7 years ago

@regionhalland/simple-redirect-server v0.1.0

Weekly downloads
-
License
GPL-2.0
Repository
github
Last release
7 years ago

simple-redirect-server

A simple redirect server used for redirecting old to new sites using a csv file. See example folder for more information.

Install

$ npm install @region-halland/simple-redirect-server

Usage

var srs = require('@region-halland/simple-redirect-server');

//Init server
srs.init({
    portListen: 1337, //HTTP server will listen on this port
    httpStatusCode: 301, //This will be the http code used for redirections
    csvFile: __dirname + "/redirects.csv" //Path to csv file used for redirections
});

Example

See example folder for an example.

Q&A

How should my .csv file be structured to work?

See the redirect.csv file inside example folder.

License

GPL-2.0 © Region Halland

0.1.0

7 years ago