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

waigo

v3.0.0

Published

Node.js ES6 framework for reactive, data-driven apps and APIs (Koa, RethinkDB)

Downloads

339

Readme

Waigo

Build Status NPM module Waigo channel on discord Follow on Twitter

[ Getting startedGuide ]

Waigo is a Node.js ES6 framework for building web apps and API back-ends which are easy to maintain and improve, and easy to scale.

Quick overview:

  • Built on koa, uses Promises and Generators, no callbacks.
  • Uses RethinkDB for end-to-end reactive data pipeline.
  • Build APIs and output both HTML and JSON for every route.
  • Flexible routing with per-route and per-HTTP-method middleware customisation.
  • Customizabe logging framework.
  • Form validation and sanitization CSRF protection.
  • User accounts, roles and access control lists. OAuth supported.
  • Emailing system with email templating support.
  • Slack notifications, fully configurable.
  • Command-line client for quick and easy setup
  • Pluggable admin interface (see waigo-plugin-admin).
  • Cron jobs.
  • Node.js clustering (multi-process) scaling support.
  • Extend or override any part of the core framework.
  • Bundle up functionality and customizations into re-usable plugins (NPM modules).
  • And much, much more...

Documentaton

Full documentation can be found in the /docs/ folder. The same docs can also be read online at waigojs.com/docs.

Note: Waigo v2 (current major version) was only recently completed, and as such docs are still a work in progress. The old v1 docs can be found at waigojs.com/v1

Development

Note: This section tells you to build Waigo itsef. For building apps with Waigo please read the docs instead.

Requirements:

  • Node.js 4.4.5+
  • RethinkDB 2.2+

First install the dependencies:

$ npm install

Now you can run the development server using:

$ npm run dev

This will watch assets and source code for changes and rebuild and reload the browser page when necessary.

If you install gulp globally then you can also run it directly:

$ npm install -g gulp
$ gulp dev

Running it directly lets you pass in additional options. For example, by default assets are not minified. To enable minification use the --debug flag:

$ gulp dev --minified

Testing

$ gulp test

This will run all the tests. To limit testing to one more test files use the --only-test option:

$ gulp test --only-test test/unit/src/support/*.test.js

Waigo v1

Version 1 is the old version of Waigo and uses Mongo instead of RethinkDB. This version is no longer being maintained but feel free to fork it from the v1 branch in the repo. Docs can be found waigojs.com/v1.

Contributing

Suggestions, bug reports and pull requests are welcome. Please see CONTRIBUTING.md for guidelines.

If you have any questions, come and chat with us on Discord.

License

MIT - see LICENSE.md