1.0.4 • Published 8 years ago

redux-boot-webserver v1.0.4

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
8 years ago

Redux Boot Web Server module.

Build Status

Web server created using Redux Boot as its core.

Install

npm install redux-boot-webserver --save

Actions constants

import {
  HTTP_BOOT,
  HTTP_REQUEST,
  HTTP_AFTER_BOOT
} from 'redux-boot-webserver'

Usage

import boot from 'redux-boot'
import webserverModule, {HTTP_REQUEST} from 'redux-boot-webserver'

const initialState = {
  variables: { port: 3020 }
}

const backendModule = {
  middleware: {
    [HTTP_REQUEST]: store => next => action => {
      const nextResult = next(action)
      const {response} = action.payload

      response.statusCode = 200
      response.setHeader('Content-Type', 'text/plain')
      response.end('Hello Motherfocas!')

      return nextResult
    }
  }
}

const modules = [
  webserverModule,
  backendModule
]

const app = boot(initialState, modules)
  .then(({store, action}) => {
    console.log('Your server is online!')
  })

Go to http://localhost:3020 and you should see the hello message.

License

MIT

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago