http_and_https

1.0.2 • Public • Published

http-https

const t = require('http_and_https');
const fs = require('fs');


const httpServer = t.http.createServer((req, res)=>{
    res.writeHead(301,{Location: `https://${req.headers.host}${req.url}`});
    res.end();
}).listen(80);

const httpsServer = t.https.createServer({key: fs.readFileSync('key.pem'),cert: fs.readFileSync('cert.pem')},(req, res)=>{
    res.writeHead(200);
    res.end("hello world\n");
}).listen(443);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    1
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i http_and_https

Weekly Downloads

1

Version

1.0.2

License

ISC

Unpacked Size

2.38 kB

Total Files

5

Last publish

Collaborators

  • trebor