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

mn-gulp

v0.4.1

Published

A configurable gulp builder.

Downloads

39

Readme

MN-Gulp Sample

My personal project for rapid SPA development. It's based on making GUI components in an MV* style.

What's in the goodie bag?

  • Angularjs without the ng-controller crap. Everything is a directive.
  • Browserify to automate the setup of directives. No reason for lazy coding any more.
  • Express static file server included. You can extend it as needed.
  • Gulp has a config that you can override and extend with more tasks.
  • Live reload via gulp. Hit save and let magic happen. Even the server restarts.

#Setup ##Install

  • npm install -g gulp if needed. (Pro tip: Google on how to avoid global npm packages.)
  • Copy the sample-project content to your root directory.
  • npm install.

##.gitignore

  • Rename .npmignore to .gitignore.

##package.json

  • Replace all the [...] markers with correct values.

##gulpfile.js ###config

You may replace a key in the config object and send in a partial config to mn-gulp. Lodash#assign is used to override the default config.

  • Copy the content of gulp/config/index.js into your gulpfile.js.
  • Remove all config keys you want as default.
  • Reformat the config keys you want to change.
  • send in your config object as the second parameter into mn-gulp.

##Routing Uses angular-ui router.

  • See client/config.js for sample code.
  • Add new routes by adding a section in client/config.js.
  • Add new pages in ui-views by copy pasting an existing.
  • If you need a controller for your page, then imitate the component controllers.

##Client components Uses angular and browserify to make a resuable angular directive.

  • Copy and paste client/components/mn-authentication content into a new folder shortnamespace-component.
  • Update template.html.
  • Update controller.js.
  • Update repository.js.
  • Add or remove files from index.js as they are / are not needed.
  • Use components in your ui-view template.html files.

#Running locally ##Gulp tasks

  • Run gulp build to build to dist/. Also runs on npm postinstall.
  • Run gulp watch to start the live reload server in dist/server/. Also works with npm start.
  • gulp/subtasks/ and gulp/bundleHelper/ are used internally by gulp/tasks/.
  • gulp/tasks/ lists all callable gulp tasks and should be your reference point. Check the code!

#Hosting on Firebase

  • Create a project on firebase.com with static hosting for your client.
  • Replace the [...] with your project name.
  • Globally install the firebase CLI via npm.
  • Build the project with gulp.
  • cd dist/
  • firebase deploy
  • Done! Go to your site.

#Known issues

  • When the server reloads, the client needs to be automatically refreshed.