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

silvvr

v0.4.5

Published

Front-End Gulp build system and boilerplate.

Downloads

18

Readme

silvvr

v0.4.1

Front-End Gulp build system and boilerplate.

Automate your web development process with ease! When changes are made to your code, silvvr automatically sets up a browsersync server, compiles SASS, bundles & uglifies JavaScript, minifies images & SVGs -- all in seconds!

Features

  • Run Development, Staging, or Production build environments:
    • By default, Development mode will compile your app with unminified JavaScript & CSS (making things easier to debug).
    • By default, Staging and Production modes will compile your app with minified and bundled JavaScript & CSS (optimized for performance).
  • Build configuration file to change development server port numbers, build destinations, and other build options.
  • Starts up a browsersync server, so changes are immediately apparent on your browser.
  • SASS w/ autoprefixer, and other helpful plugins.
  • JavaScript bundling and uglify.
  • Image minification for SVGs, PNGs, JPGs, and GIFs.
  • HTML minification.
  • Favicons generator.
  • Watches all asset folders and automatically copies those files to their corresponding destination folders.
  • Includes Bourbon and Neat -- http://bourbon.io/

Requirements

NodeJS 5.11 or greater is recommended -- http://nodejs.org/ for silvvr to operate. It is preferable that you install NodeJS via Homebrew -- http://brew.sh/

Install

To install silvvr, simply clone this repo and create your own repo instance.

  1. Open terminal and cd to a location where you'd like to keep your project files:

     cd ~/where/i/want/my/project
  2. Clone silvvr and cd to it:

     git clone https://github.com/keezoid/silvvr.git
     cd silvvr
  3. Install node modules:

     npm install
  4. Run gulp generate-favicons to generate favicons from app/assets/favicon.png.

  5. Now run gulp --this will start silvvr in development mode.

  6. Navigate to http://localhost:8000 and you should see a default index page. You are now ready to start coding!

Commands

  • gulp Start silvvr in development mode. This will launch a node server on port 8000.

  • gulp --stage Start silvvr in staging mode. This will launch a node server on port 8000.

  • gulp --prod Start silvvr in production mode. This will launch a node server on port 8000.

  • gulp <--env> --build Start silvvr in build-only mode. Files are only generated. No file watching or server is initiated.

  • gulp make --page <page-name> <--name> <Page Name> Scaffold files to generate a new page.

  • gulp make --component <component-name> --folder <folder> <--name> <Component Name> <--noscript> Scaffold files to generate a new component.

  • gulp delete --page <page-name> Delete scaffolded files for a given page.

  • gulp delete --component <component-name> --folder <folder> Delete scaffolded files for a given component.

Recommendations

  • It is recommended that you update properties on the package.json file to reflect your current project.
  • If you are using git on your project, you can remove the hidden .git folder and run git init to start your own repository.
  • You should update /app/humans.txt with your information.

Warnings

  • Never, ever, add new files or make changes to anything within the destination folder dist. This folder is removed and regenerated when silvvr starts.

Contact Me

If you have questions, comments or concerns, feel free to reach me as follows:

Website --- keenanstaffieri.com

Twitter --- @keenode