Giter Club home page Giter Club logo

webserver-node's Introduction

webServer-node

An HTTP server library written using Node.js net module

Installation

Before installing the library, download and install Node.js and npm Once Node.js and npm is successfully installed, install http-server-lib from npm by using npm install command

$ npm install http-server-lib

Running this will create a node modules directory in your current directory (if one doesn't exist yet) and download the package in that directory.

Getting Started

Creating a server instance

const server = require('./server/tcp-server')

server.startServer(port)

Adding routes

const server = require('./server/tcp-server')

server.startServer(port)
server.addRoutes('GET', '/', (request, response) => {
  response.body = 'Hello World!'
  response.send()
})

Using middlewares

const server = require('./server/tcp-server')
const logger = require('./middlewares/logger')
const bodyParser = require('./middlewares/bodyParser')

server.startServer(port)

server.addHandler(bodyParser.parseUrlEncodedBody)
server.addHandler(logger)

server.addRoutes('POST', '/data.html', (req, res) => {
  res.body = req.body['fieldName']
  res.setHeaders()
  res.setContentType('/data.html')
  res.send()
})

Note: Middlewares are processed in the order that they are added

Features

Static file handling

Session handling

Body parsing with support for multipart/form-data and multipart/mixed type requests

Look [here] ('app.js') for an example app that uses this library

License

MIT

webserver-node's People

Contributors

donnaannissac avatar

Stargazers

Abhishek avatar

Watchers

James Cloos avatar

Forkers

niagr

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.