Giter Club home page Giter Club logo

paperplane's Introduction

paperplane

Lighter-than-air node.js server framework.

npm version npm downloads Build Status Coverage Status

Documentation

Introduction

The main goal of paperplane is to make building a node.js server easy, without all of the configuration or imperative boilerplate required for other server frameworks. If you prefer to build apps with function composition or even a point-free style, then paperplane is for you.

With paperplane you get all of these out-of-the-box:

Let's try a quick Hello World example server. It accepts a :name param in the url, and then includes that name in the json response body.

const { compose } = require('ramda')
const http = require('http')
const { json, logger, methods, mount, routes } = require('paperplane')

const hello = req => ({
  message: `Hello ${req.params.name}!`
})

const app = routes({
  '/hello/:name': methods({
    GET: compose(json, hello)
  })
})

http.createServer(mount({ app })).listen(3000, logger)

So simple and functional, with an easily readable routing table and pure functions for the route handler. If that sounds like fun to you, then read the Getting started guide or the API docs to learn more.

Example application

To help you learn the concepts used in paperplane, check out the demo application.

If you have docker installed, you can run the demo locally:

  1. Clone this repo
  2. If you're using Docker Desktop for Windows:
    • cp docker-compose.override.windows.yml docker-compose.override.yml
  3. docker-compose up
  4. http://localhost:3000

paperplane's People

Contributors

dbertram avatar dependabot-preview[bot] avatar dependabot[bot] avatar flintinatux avatar kdstew avatar mgreystone avatar pklingem avatar rakeshpai avatar spencerfdavis avatar tecnobrat avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

paperplane's Issues

Logger formatting

There is a way to format logs in console?
E.g JSON.stringify(log, null, 4).

Setting headers for errors

When sending a 401 Unauthorized, I want to set a WWW-Authenticate header. Considering that a 401 would be handled as a promise error, what's the recommended way of setting the header?

Need to catch and ignore promises rejected by `cry`

Because of this tap:
https://github.com/articulate/paperplane/blob/master/lib/mount.js#L56

If the cry returns a rejected Promise here: https://github.com/articulate/paperplane/blob/master/lib/mount.js#L53

Then you get an UnhandledPromiseRejectionWarning:

(node:93) UnhandledPromiseRejectionWarning: Error: Unauthorized
    at checkIat (/service/node_modules/@articulate/revocal/src/verify.js:16:37)
    at apply (/service/node_modules/ramda/src/apply.js:26:13)
    at /service/node_modules/ramda/src/internal/_curry2.js:22:18
    at f1 (/service/node_modules/ramda/src/internal/_curry1.js:18:17)
    at /service/node_modules/ramda/src/internal/_pipeP.js:5:16
    at process._tickCallback (internal/process/next_tick.js:68:7)
(node:93) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)
(node:93) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

We should be detecting and ignoring rejected promises from cry. Maybe like this:

const sob = req => err => {
  const result = cry(Object.assign(err, { req }))
  if (result && typeof result.catch === 'function') {
    result.catch(Function.prototype)
  }
}

Add flushHeaders()

If the response body is an instance of a stream, the headers should be flushed before the pipe method is called.

In writeHTTP.js:

if (body instanceof Stream) {
    res.flushHeaders()
    return body.pipe(res)
}

Type definitions

It would be nice to have typescript type definitions for the project.

Remove ability to view group details

Given I have a groupWhen I click the menu elipsis
Then there should be no "View/Add Details" option in the menu

Given I have a group
When I double-click the group
Then nothing should happen (ie the group details do not appear)

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.