MichelGerding / NodeJS-HttpsServer

this is a simple nodejs https server with a templating tool that has 0 dependencies. it is created because I want to learn how all the tools i use on a daily basis work and are made

Repository from Github https://github.comMichelGerding/NodeJS-HttpsServerRepository from Github https://github.comMichelGerding/NodeJS-HttpsServer

Node-HttpsServer

A no dependencies, minimalistic web framework for nodejs

const HttpServer = require('HttpServer')
const server = new HttpsServer({port: 8080})

server.get('/', (req, res) => {
    res.send('Hello World')
})

server.listen()

Installation

This is a Node.js module avialable throug github

installation is done using the npm install command

$ npm install github:MichelGerding/NodeJS-HttpsServer --save

Features

  • Robust routing
  • Easy to use middleware
  • A template engine using string literals syntax
  • Easy to use views
  • Easy to create https server

About

this is a simple nodejs https server with a templating tool that has 0 dependencies. it is created because I want to learn how all the tools i use on a daily basis work and are made

License:Apache License 2.0


Languages

Language:JavaScript 100.0%