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 🙏

© 2026 – Pkg Stats / Ryan Hefner

octavius

v1.3.3

Published

Gulp-based application for frontend development

Readme

Octavius project

This is a simple Node.js project that use Gulp for precompile all assets:

  • Jade
  • SCSS with Autoprefixer
  • CoffeeScript
  • Generated iconsfont
  • Full Bower integration
  • Organize folder structure (copying fonts, sounds etc)
  • Production mode with minified assets
  • Express server for standalone static sites

Main features

  • Easy installation and ready to work after 3 commands
  • CoffeeScript based Gulpfile
  • Useful Gulpfiles structure with tasks, utils etc
  • Full bower support (Automatic concat and optimize bower components from bower.js)
  • BrowserSync support with *.xip.io external link (no need Chrome extension)

Requirements

  • *nix like OS (Mac OS is recommended)
  • Homebrew (Mac OS) or your operating system package manager
  • node.js as main engine
  • npm as node.js package manager

Installation (Mac OS)

Node.js

brew install node

Node Package Manager (NPM)

Note: strongly unrecommended to install NPM via Homebrew, because there may be problems with access permissions

curl -L https://npmjs.com/install.sh | sh

Install required NPM packages

npm install -g octavius

Work with Octavius

Start Octavius

octavius

Check Octavius version

octavius -v or octavius --version

Extend and override Octavius tasks

Octavius supports custom tasks. All you need is create octavius folder in your application and add tasks folder inside it. After that you can create your own tasks which extends core Octavius Task Class (or any existed Task). Here is example of simple sounds copy task:

CopyTask = require "#{__base}/core/tasks/copy"

class SoundsTask extends CopyTask
  _paths:
    destination: 'sounds'

module.exports = SoundsTask

After restart Octavius your custom task will be added into Tasks stack.

Bower components installation

All bower components automatically concatenates into one file libraries.js. Gulp get main file of each component by its 'main' attribute in bower.json. So if you want automatically attach new component to your project you shoud do it with this command:

bower install backbone --save

Important! Octavius does not find your component without dependency in bower.json. Flag --save means that the information about the component will be included in the main bower.json file.

Production mode

You can run Octavius in production mode with this simple environment variable:

PRODUCTION=true

Express server

Octavius can run server on specified port with this environment variable:

PORT=8888

Now you can see your website without BrowserSync with this address:

http://localhost:8888/

It is very useful for Cloud Services, for example, Heroku. Just add package.json with this content in your project's root directory:

{
  "name": "Project Name",
  "version": "1.0.0",
  "description": "Project description",
  "scripts": {
    "start": "octavius"
  },
  "dependencies": {
    "octavius": "^1.1.4"
  },
  "engines": {
    "node": "5.0.0"
  }
}

and push your project to heroku master branch.