New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

funcatron

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

funcatron

A functional framework for composing Node applications

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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.

Keywords

FAQs

Package last updated on 21 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc