npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aera

v1.1.4

Published

A super-simple functional HTTP library.

Downloads

13

Readme

Aera

A Super-Simple HTTP Server library that makes use of functional programming paradigms, but stays unopinionated about how you handle your requests and responses.


Build Status Coverage Status Dependencies devDependencies Status npm

const Aera = require('aera')

const app = new Aera()
app.get('/', () => 'Hello, World!')

See the change log for changes in this version!

Basic usage

Install and add to your dependencies with the following line:

npm install --save aera

Below you can see a Hello, World! example, which is possibly the tiniest web application you can create.

const Aera = require('aera')
const server = new Aera() // Default port is 3000

server.get('/', () => 'Hello, World!')

In Aera, you can pass a single function to a path handler and the return value of that function will be reflected in the response. Aera will attempt to make a few guesses, based on the content you provide, for example, if you return an object, it will be stringified and sent with the Content-Type: application/json.

Here are the types of return values you can pass to Aera at the moment:

  • String
  • Number
  • Promise
  • Object
  • Readable Stream
  • ... more to come

You can implement a static file server in a single line!

server.get('/:file', ({ params }) => fs.createReadStream(`./my/folder/${params.file}`))

You can execute any function that returns any of the supported values and return the value of that, for example: template functions.

server.get('/template', () => myTemplateFunction({name: 'Daniel', status: 'Awesome'}))

CRUD in a single line...

server.get('/api/pets/:name', ({ params }) => db.find({ name: params.name })) // given that your db implementation returns a promise.

You can also play around with the data and then use it:

server.get('/users/:id', ({ params }) => db.find({ _id: params.id }).then(formatUser).then(renderTemplate))

Simple request body echo server:

server.post('/echo', (req) => req)

Creating Web Apps should be simple and fun.

Exceptions and error handling

Aera tries to handle your exceptions for you, but it is completely fine if you want to have your own custom messages for exceptions. You can specify them in the options parameter of the Aera() constructor.

const server = new Aera({port: 3000, notFoundException: 'Not the droids you are looking for. Sorry.'})

Of course if you wanted to make this nice, you can pass it a template function instead. That would also as long as it returns a valid string value.

const server = new Aera({port: 3000, notFoundException: myNotFoundTemplate()})

Currently the following errors will be returned by Aera by default:

  • notFoundException status: 404, body: Not found. - returned when no path matches the request url.
  • fileNotFoundException status: 404, body: File not found. - returned when a stream is passed in and it errors.
  • internalServerErrorException status: 500, body: Internal server error. - returned when the handler has an uncaught exception.
  • methodNotAllowedException status: 405, body: Method not allowed. - returned when no handlers are available for the method of the path.

Request and Response

In Aera, the request and response parameters are actually the native Node JS HTTP request and response objects. If you know how to use native HTTP, you'll know how to use Aera. Read up on the HTTP docs, here, or look for a guide in the guides folder.

Running tests

You can run tests with the following line:

npm test

A little advice: in most use cases you can write tests for your application logic, without even involving Aera. This is because Aera encourages the concept of simple functional programming over side-effect-based middleware writing. Create your handlers, run tests on them and then plug them into Aera to see your content appear on your website or service.

Future

The API is not yet evolved fully, however in the not so far future I'm looking into making it more friendly and easier in production use-cases as well.

Contribution

I welcome contribution to this project in any form. If you'd like to work with me to improve anything (performance, features), feel free to submit an issue and create a PR.

Currently I am looking into ways to efficiently create hooks for certain events that happen, like pre-routing, post-handler, etc... This may be useful for authentication, normalization, header checks and so on. This will probably get released in the next major version 1.0.0.