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

bc-ignite

v1.4.1

Published

A JSON-based scaffolding tool that favors structure over full-fledged integration.

Downloads

16

Readme

Ignite

JSON based scaffolding system


NPM version Downloads Build Status

Join the chat at https://gitter.im/bc-ignite/ignite

###Installation npm install -g bc-ignite

###Igniting your Project ignite scaffold {template-name}

###Listing Install Templates ignite list

###Describing templates ignite describe {template-name}

###Advanced usage can be found below

###Current Templates

  • angular - Minimal baseline, leaving developer to decide folder structure based on type (i.e, Controllers, Directives, Services) or component (e.g., Home, Search, Admin)

  • express - A seed structure for building robust express apps

  • marionette - A folder structure for use with Marionette and Backbone.js, creates scripts directory.

  • meteor - Standardized Meteor Application Template

  • react - A Flux-Based template for building React Applications

  • drupal - Standardized Drupal 7 Template folder & file structure

  • wordpress - Standardized WordPress Template folder & file structure

  • node - folder & file structure for creating Node.js & io.js modules

  • joomla - Joomla Template folder & file structure

  • harp - Harp.js folder & file structure scaffold

  • nwjs - NW.js application folder & file structure scaffold

  • sublime - Sublime Text scaffold for creating snippets and packages

  • atom - Atom.io scaffold for creating packages in CSON and coffeescript.

###Want to Contribute a Template? Just fork the repo, add one, and submit a pull request.

Why do that instead of generators? Because with generator based solutions like Yeoman and Slush, everyone and their grandma has created generators. The plan for Ignite is to have community standardized templates so there's not 50 different angular scaffolds to choose from.

###Vision. The plan for Ignite is simple. I want a solution that doesn't scaffold a project for you, but instead scaffolds the structure of a project. Why? Because you'll be able to do things like this...

ignite scaffold rails
cd public
ignite scaffold angular

instead of...

ignite scaffold rails-angular

This allows you to scaffold only the pieces you need and hopefully will give you a solution more specific to your actual needs, instead of installing all the junk someone else thought they needed when they created the generator.

##Advanced Usage ###Using custom templates Ignite can be used with user-created templates as well. All you have to do is specify a folder on your file system and use the -d flag when calling the command.

Simply create the template in a directory

touch /path/to/my/templates/rails.json

Create the JSON appropriately, and then run

ignite scaffold rails -d /path/to/my/templates/