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

slush-appkit

v1.3.10

Published

> Provides a modular workflow to scaffold and build web applications, based on Slush.js, Gulp.js, and others. Still in early stage of development, but some features is ready to go.

Downloads

5

Readme

slush-appkit Build Status

Provides a modular workflow to scaffold and build web applications, based on Slush.js, Gulp.js, and others. Still in early stage of development, but some features is ready to go.

Requirement

  • Node 4+
  • Npm 2+
  • Bower 1.7+
  • Gulp 3.8+
  • Slush 1.1+

Dependencies

$ npm install -g bower
$ npm install -g gulp
$ npm install -g slush

Install

$ npm install -g slush-appkit

Usage

$ slush appkit

CLI

Command Line Interface

  • General
    • [x] Show available tasks $ slush appkit --tasks
    • [x] Show current version $ slush appkit --version
    • [x] Create new application $ slush appkit
    • [x] Serves both client and server $ slush appkit:serve
  • Client
    • [x] Module
      $ slush appkit:client-module [moduleName]
    • [x] Component
      $ slush appkit:client-component [moduleName] [componentName]
    • [x] Directive
      $ slush appkit:client-directive [moduleName] [directiveName]
    • [x] Filter
      $ slush appkit:client-filter [moduleName] [filterName]
    • [x] Service
      $ slush appkit:client-service [moduleName] [serviceName]
    • [x] Factory
      $ slush appkit:client-factory [moduleName] [factoryName]
    • [x] Controller
      $ slush appkit:client-controller [moduleName] [controllerName]
  • Server
    • [x] API endpoint
      $ slush appkit:server-api [endpoint]
    • [ ] Endpoint model
      $ slush appkit:server-model [endpoint] [modelName]
    • [ ] Endpoint controller
      $ slush appkit:server-controller [endpoint] [controllerName]
  • Environment
    • [x] Serves client
      $ slush appkit:serve-client
    • [ ] Serves client in dist mode
      $ slush appkit:serve-client-dist
    • [x] Serves API server $ slush appkit:serve-api
  • Deployment
    • [ ] build and deploy client
      $ slush appkit:client-deploy
    • [ ] build and deploy server
      $ slush appkit:server-deploy

Application Structure

├── README.md
├──.client.build                                <- client deploy
├──.server.build                                <- server deploy
├── gulpfile.ts                                 <- configuration of the gulp tasks
├── karma.conf.js                               <- configuration of the test runner
├── package.json                                <- dependencies of the project
├── protractor.conf.js                          <- e2e tests configuration
├── bin                                         <- deploy and build executables
├── server                                      <- source code of backend application
├── client                                      <- source code of frontend application
│   └── src
│       ├── app
│       │   └── core                            <- appkit core modules
│       │   │   ├── errors
│       │   │   ├── login
│       │   │   ├── page
│       │   │   ├── user
│       │   │   ├── utils
│       │   └── modules                          <- third-party modules
│       │   │   ├── home
│       │   │   │   ├── home.config.js
│       │   │   │   ├── home.component.js
│       │   │   │   ├── home.spec.js
│       │   │   │   ├── home.html
│       │   │   │   ├── home.css
│       │   └── themes         
│       │   │   ├── default
│       │   │   │   ├── theme.html
│       │   ├── index.less
│       │   ├── index.module.js                  <- main module
│       │   ├── vendor.less
│       ├── assets
│       └── index.html                           <- main template
└── .gitignore                                   <- ignored files