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

@flypapertech/avian

v0.9.0

Published

Create Enterprise-class component driven applications that scale.

Downloads

328

Readme

Avian

Create Enterprise-class component driven applications that scale.

CircleCI Docker Cloud Build Status Known Vulnerabilities npm (scoped) License Dependencies Docker Pulls

Synopsis

Avian is a platform for running highly available, horizontally scalable, stateless, component based applications. It is optimized for public cloud, private cloud, bare metal, virtual machines, and containers. Its design is the result of years of experience in developing and maintaining applications at scale, while easing development and maintainability for large software engineering teams.

Key Features

Avian is built on top of the popular Express web framework for NodeJS, uses Redis for managing application state afinity, sessions, and the caching of view templates, while Webpack manages the transpilation and bundling of your client and server-side component files.

  • Cluster mode for load balancing across available CPU cores.
  • Out of the box webpacking with sane defaults. Don't worry you can override and/or add to them whenever you want :)
  • Routes are generated based on how your component folders are structured.
  • Supports client side scripts and server side routes (APIs) written in JavaScript and TypeScript.
  • The serving of static files.
  • Views can be authored in EJS, Twig, Pug, and plain HTML.
  • Logging frameworks are Pino, Bunyan, and Fluentd.

Installation

Docker

Official Docker instructions coming soon. For now, check out the hello-world example in the examples directory.

NPM

The latest stable release of Avian is available on npmjs.com.

The most common scenario is to install Avian as a dependency of your project.

npm install @flypapertech/avian

or 

yarn add @flypapertech/avian

And can be accessed as...

node ./node_modules/.bin/avian

Alternatively, Avian can be installed globally, making it possible to serve multiple applications with a single installation of Avian.

npm install @flypapertech/avian -g

or

yarn global add @flypapertech/avian

And can be accessed globally, but will need to be told where your Avian application is located...

avian --home /path/to/avian/app/home

System Requirements

NodeJS

Avian requires NodeJS version 8.0 and above.

Redis Server

Avian uses Redis Server for storing session data, caching component config object requests and arbitrary caching requirements you may have.

Suggested Redis Installation Methods

macOS

brew install redis

Ubuntu Linux

apt install redis-server

Alpine Linux

apk add redis

Windows (experimental)

Getting Started

CLI Arguments

Options:
--help                      Show help                                [boolean]
--version                   Show version number                      [boolean]
--name, -n                  The name of your application[default: "localhost"]
--home, -h                  The directory of your application.
                                            [default: Current working directory]
--mode, -m                  Deployment mode to run Avian in.
                [choices: "development", "production"] [default: "development"]
--port, -p                  Which port to serve your application on.
                                                                [default: 8080]
--staticDir, --sd           Which directory you would like to serve static
                            files from. Will be accessible at the root of your
                            application (e.g. /).          [default: "static"]
--entrypoint, --ep          The point of entry to your application.
                                                            [default: "index"]
--spa                       Start Avian in a single-page-application (SPA)
                            configuration.          [boolean] [default: false]
--bundleSkip                                        [boolean] [default: false]
--bundleOnly                                        [boolean] [default: false]
--redisHost                                             [default: "127.0.0.1"]
--redisPort                                                    [default: 6379]
--redisPass
--redisSessionDb                                                  [default: 1]
--redisCacheDb                                                    [default: 2]
--redisCronSchedulerDb                                            [default: 3]
--webpackHome                                                    [default: ""]
--logger, -l                Which logging framework to use.
                                        [choices: "pino", "bunyan", "fluent"]
--loggerFluentLabel, --lfl                                  [default: "debug"]
--loggerFluentTag, --lft                                    [default: "debug"]
--loggerFluentHost, --lfh                               [default: "127.0.0.1"]
--loggerFluentPort, --lfp                                     [default: 24224]
--sslCert                                                             [string]
--sslKey                                                              [string]
--compression                                       [boolean] [default: false]
--cronJobScheduler, --cjs   Avian components are capable of scheduling
                            cron-like jobs that are executed on the server.
                                                    [boolean] [default: false]

Application Folder Structure

├── assets [optional, statically served at /assets]
├── static [optional, statically served at /static]
├── cache [auto-generated by Avian in production mode to hold cached files]
├── components
│   ├── server.routes.(ts/js) [optional, used to add server routes to / path]
│   ├── component_name.client.(ts/js) [optional, contains all JavaScript/TypeScript logic for a component. Will be bundled with Webpack]
│   ├── component_name.view.(pug/ejs/html) [optional, renders output to a screen, e.g. a /component_name get request]
│   ├── component_name.server.routes.*.(ts/js) [optional, used to add server routes to /component_name]
│   ├── component_name.config.json [optional, served at /component_name/config/objects.json and passed to view files at render time]
│   ├── component_name [components can be in a flat folder or scaffolded like this]
│   │   ├── component_name.client.(ts/js)
│   │   ├── component_name.view.(pug/ejs/html)
│   │   ├── component_name.server.routes.*.(ts/js)
│   │   ├── component_name.config.json
├── logs [auto-generated by Avian in production mode]
├── package.json
├── private [auto-generated by Avian to contain server side compiled files, e.g. component server files]
├── public [auto-generated, for compiled component bundles, statically served at /]

Session Management

Avian uses express-session to manage client sessions. All sessions are stored in a Redis store.

  • Browser Based Clients

  • Mobile Device and API Clients

    • Avian augments express-session to allow API and mobile device sessions management. Since those clients may not use cookies they simply need to send their session ID in the authorization header of all requests made to Avian. See below for an example header.
headers: {
    Authorization: "Bearer Session_ID"
}

Global Variables Added by Avian

Properties Added to All Request Objects

req.argv contains a copy of all arguments passed to Avian at start time.

req.cache is a RedisClient instance hooked to Avian's config object cache. Feel free to use it for your own needs as well.

req.params paramaters passed to your component. Typically this is used to determine the component name being rendered, e.g. req.params.component.

req.query contains all query parameters passed to the componenent being requested.

Developing w/ TypeScript

To make TypeScript aware of the globals Avian adds to your application simply place the below import into any .d.ts file that is within your application.

import * as Avian from "@flypapertech/avian"

Examples

Examples are located in the examples directory.

Contributors

Dan Stephenson
Nick Fredricks

License

MIT

Copyright

2018 - 2020 FlyPaper Technologies, LLC
2016 - 2018 Thoughtpivot, LLC