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

generator-bravocart

v0.1.0

Published

Build hybrid mobile shops using AngularJS/Ionic Framework

Downloads

18

Readme

Bravocart generator Build Status npm version

Yeoman generator for creating beautiful mobile shops using Bravocart and Ionicframework.

Features

  • Scaffolding Bravocart projects with Yeoman
  • bravocart.js integration for easy API access
  • Cordova integration for building native apps
  • Gulp tasks for building iOS/Android apps
  • Browsersync live reload for development
  • Painless dependency management with Bower

Usage

npm install -g yo bower grunt-cli gulp generator-bravocart cordova ionic

Run yo bravocart.

yo bravocart

Run gulp for preview.

Project Structure

├── hooks/                  - Hooks to be used by Cordova
├── platforms
│   ├── ios                 - Created by `cordova platform add ios`
│   ├── android/            - Created by `cordova platform add android`
│   ├── platforms.json      - To be used by Cordova
├── plugins/                - Plugins to be used by Cordova
├── www/                    - Directory holding app
│   ├── css/
│   │   ├── style.css       - Global stylesheet
│   ├── img/                - Images directory
│   ├── js/
│   │   ├── app.js          - AngularJS main module
│   │   ├── controllers.js  - AngularJS controllers module
│   │   ├── serivces.js     - AngularJS services module
│   ├── lib/                - Project dependencies, managed by bower
│   ├── templates/          - AngularJS template files
│   ├── index.html          - Main app entry point
├── bower.json              - Front-end dependencies, managed by bower
├── config.xml              - Cordova global configuration file
├── gulpfile.js             - Gulp tasks
├── package.json            - Project dependencies, managed by npm
├── README.md               - Project's README file
├── .jshintrc               - Global JSHint configuration
├── .bowerrc                - Bower configuration file
├── .gitignore              - Commnly ignored files

Workflow Commands

All platforms

gulp serve

Desktop browser testing with live reload

iOS

gulp platform:ios

Add iOS platform target with Cordova

gulp serve:ios

Desktop browser testing with live reload

gulp build:ios

Deploy app to iOS platform device

Android

gulp platform:android

Add Android platform target with Cordova

gulp serve:android

Desktop browser testing with live reload

gulp build:android

Deploy app to Android platform device

Community

Gitter

Further Reading