Skip to content

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

Notifications You must be signed in to change notification settings

MichelGerding/NodeJS-HttpsServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published