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

wheelie

v0.3.0

Published

Small but efficient frontend toolchain, built on top of Gulp and insipired by Frigate

Downloads

10

Readme

======= Wheelie

.. image:: https://badge.fury.io/js/wheelie.svg :target: https://badge.fury.io/js/wheelie :alt: Latest version

.. image:: https://readthedocs.org/projects/wheelie/badge/?version=latest :target: http://wheelie.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://travis-ci.org/wheelie/wheelie.svg :target: https://travis-ci.org/wheelie/wheelie :alt: Build Status

.. image:: https://codecov.io/gh/wheelie/wheelie/branch/master/graph/badge.svg :target: https://codecov.io/gh/wheelie/wheelie :alt: Coverage Status

.. image:: https://david-dm.org/wheelie/wheelie.svg :target: https://david-dm.org/wheelie/wheelie :alt: Dependency Status

.. image:: https://david-dm.org/wheelie/wheelie/dev-status.svg :target: https://david-dm.org/wheelie/wheelie#info=devDependencies :alt: Dev Dependency Status

Small but efficient frontend toolchain, built on top of Gulp_.

.. _Gulp: http://gulpjs.com/

Support

If you need support, please use the GitHub issue tracker_.

.. _GitHub issue tracker: https://github.com/wheelie/wheelie/issues

Contributing

We love contributions, so please feel free to fix bugs, improve things, provide documentation. Just follow the guidelines and submit a PR.

Requirements

  • Node 4.x, 5.x, 6.x
  • Gulp >= 3.9

Overview

Wheelie isn't a task runner, a build system or a Gulp wrapper. It's just a common interface to your Gulp tasks so that you can share, re-use and easily update them, improving your automated workflow. It ships out of the box with:

  • A Task model to create custom tasks like you usually do with Gulp. The programmatic interface exposes a configuration callback so that other developers may re-use your task, overriding your defaults.
  • Tasks can be grouped together to create a recipe. Your frontend toolchain becomes a list of Gulp tasks and it can be versioned in a different repository. If you publish your recipe into npm, you can update your projects' toolchain with just a change in the project's package.json.
  • Nothing less that Gulp already offers you. Wheelie takes care about the Gulp configuration and it returns a gulp instance, configured as described in a recipe.
  • Wheelie is fast and without overhead; the Gulp configuration happens only once for each run.

Getting started

Install Wheelie with the official recipes registry::

$ npm install --save-dev wheelie wheelie-recipe

Create a gulpfile.js in your project root folder with the following content:

.. code-block:: javascript

// importing your gulp reference
var gulp = require('gulp');

// importing Wheelie constructor and a recipe
var Wheelie = require('wheelie');
var recipe = require('wheelie-recipe');

// adding a Wheelie recipe
var wheelie = new Wheelie();
wheelie.add(recipe);
wheelie.build();

// <-- at this point, Gulp is configured with a set of tasks available in the wheelie-recipe package

With the above Gulpfile, you can launch the watch task simply with:

.. code-block:: bash

$ gulp

Official recipes

wheelie-recipe_ is a recipe currently maintained by Wheelie core developers. We're not suggesting our way to write frontend applications, but just to inspire and enforce a community-driven way to write Wheelie recipes.

.. _wheelie-recipe: https://github.com/wheelie/wheelie-recipe

Testing

We use Jest_ as a test framework. Install all development dependencies and launch the test suite:

.. code-block:: bash

$ npm install
$ npm test

.. _Jest: https://facebook.github.io/jest/

Documentation

Full documentation for the project is available at http://wheelie.readthedocs.io/

License

Wheelie is released under the terms of the BSD LICENSE. Full details in LICENSE file.