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

angular2-boilerplate

v2.2.0

Published

Angular-2 boilerplate

Downloads

5

Readme

README

What is this repository for?

Angular-2 boilperplate code with gulp building your tasks, handling the transpilation of your typescript into javascript, compiling your sass into css, and starting a local web server at http://localhost:8000.

This library provides the basic building blocks for building Angular-2 applications transpiled from Transcript, complete with src and app scaffolding for components, directives, services, pipes, sass, javascript, and assets.

It also comes initialized with npm commands to easily build components, directives, services, and pipes through the command line. More on that later in the readme.

  • v2.2.0
    • now updated for the stable release of Angular 2.0.0!

How do I get set up?

Prerequisites: node, gulp, typescript, typings.

(skip these steps if you already have the prerequisites)

If you don't have these installed, fetch 'em. How? Download node from the homepage at https://nodejs.org/ or install node through Homebrew if you have it.

make sure you have node and npm installed

node -v
"version number"
npm -v
"version number"

then

sudo npm install -g gulp typescript typings

App Installation and Getting Started

Install the package using npm or git:

sudo npm i jumanjijs

or

git clone [email protected]:rafay826/jumanjijs.git

Change into your project directory and run the following command line installs

sudo npm install
typings install

Run the application, starting up http://localhost:8000

gulp

What commands come with this library?

All components, directives, services, and pipes that are created from the script commands get automatically placed into it's respective typescript directory in the 'src' folder.

Creating new components:

npm run component myComponent.ts

all new files that get created must end in .ts

Creating new directives:

npm run directive myDirective.ts

Creating new services:

npm run service myService.ts

Creating new pipes:

npm run pipe myPipe.ts

Who do I talk to?

Rafay Choudhury [email protected]