0.0.8 • Published 7 years ago

funcatron v0.0.8

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Build Status Coverage Status npm version Chat at https://gitter.im/funcatron-funcatron/core

Funcatron

A functional framework for composing Node applications

Documentation

See Full API Documentation (in progress).

Installation

npm install funcatron --save or yarn add funcatron

Usage

const { funcatron } = require("funcatron")

// Pass funcatron an array of route definitions
funcatron([
    {
        path: "/",
        method: "get",
        handler: ({req, res}) => res.end("Hello World! yours sincerely, funcatron")
    },
    {
        path: "/login",
        method: "post",
        handler: ({req, res}) => res.end("Post request received")
    }
]).listen(8000)

Contributing

Contributions welcome on Github. All core-API changes should also be accompanied by a change-request to the documentation.

Before making a contribution, please review the Code of Conduct.

If you're new to Open Source, I'd love if Funcatron was your first project that you contribute to. Check-out the Contributing document for how to get started.

Issues

Issues gladly accepted on Github.

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago