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-oasp

v2.0.2

Published

Yeoman generator for AngularJS applications based on OASP4JS

Downloads

25

Readme

generator-oasp Build Status

Yeoman generator for AngularJS applications powered by OASP4JS.

Getting Started

Before you start to use generator-oasp it is important to install the prerequisites. You will need the Node.js, Bower and Gulp. Here you can learn how to install the necessary tools.

Why it is worth using

It offers more than other application seeds

There are a lot of JavaScript/AngularJS application seeds like angular-seed or angularjs-seed. All of them are great, but they focus rather on a quick & easy start and work well for small-scale projects. oasp4js is built as a base for bigger, modularized, enterprise projects, where different modules are often developed independently and simultaneously by many teams.

It does not reinvent the wheel

oasp4js just brings its idea on an application structure and makes use of well-known tools such as Gulp or Bower which support developers in their activities. This all makes coding, testing and building the application extremely efficient.

What is Yeoman?

Trick question. It's not a thing. It's this guy:

Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.

Not every new computer comes with a Yeoman pre-installed. He lives in the npm package repository. You only have to ask for him once, then he packs up and moves into your hard drive. Make sure you clean up, he likes new and shiny things.

Hint: If you are using Windows Command Line it is recommended to run it as an administrator.

npm install -g yo

Yeoman Generators

Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, such as a Backbone application or even a Chrome extension.

To install generator-oasp from npm, run:

npm install -g generator-oasp

Create a directory in which you will later call the generator:

mkdir <directory_name>
cd <directory_name>

Finally, initiate the generator in the created directory:

yo oasp

Enjoy

Please note that all commands below must be executed in project root directory.

Developing

Start the application using Gulp:

gulp serve

The above Gulp's task opens the application in your default browser and watches for any HTML/JavaScript/CSS changes. Once you do one, the page is reloaded automatically!

Testing

Run application's Jasmine tests:

gulp test:tdd

This Gulp's task uses the Karma test runner to execute Jasmine tests (against the PhantomJS) and watches for any change in your JavaScript files (both sources and specs). Test Driven Development has never been easier :)

If you would like to run the tests against a real browser (rather than against the PhantomJS) or use it to debug a test, call:

gulp test:tdd:debug

Building

Build the application:

gulp serve:dist

The above Gulp's task creates the myapp/dist directory and put there HTML documents, CSS files (compiled from Less files) and JavaScript files (merged, minimized and obfuscated).

More info

For more details, please refer to the wiki.