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-aurelia-es6

v0.1.0

Published

Yeoman generator for the JavaScript Framework Aurelia with minor tweaks

Downloads

1

Readme

generator-aurelia-es6

This is a fork of zewa666's generator-aurelia, with a few tweaks for my own personal preference. Work in progress, I recommend the original if you want stability and TypeScript.

Main difference:

  • Folder is structured in a modlet way, e.g. putting the view and its corresponding viewModel in the same folder.
  • Subgenerators for service/components/pages.
  • No longer download from the Skeleton App first, templates are local.
  • Only support ES6 for now.

TODO:

  • Include CSS / LESS for modlets.
  • Support other project types from the Skeleton App template.
  • Find a more elegant way to do routes for sub folders.

This is a Yeoman Generator for the Skeleton App of the Aurelia platform. It sets up a standard navigation-style app using gulp to build your ES6 code with Babel. Karma/Jasmine testing is configured as well.

For more info please visit the official site: http://www.aurelia.io/

Prerequisite

This generator will use JSPM, Aurelias package manager of choice, which performs GitHub queries to install semver packages, but GitHub has a rate limit on anonymous API requests. It is advised that you configure jspm with your GitHub credentials in order to avoid problems. You can do this by executing jspm registry config github and following the prompts. If you choose to authorize jspm by an access token instead of giving your password (see GitHub Settings > Personal Access Tokens), public_repo access for the token is required.

Running The App

The recent update will take care of running npm install and jspm install after downloading the boilerplate app, so this shortens the process to get up and running.

  1. Install all necessary components
npm install -g yo generator-aurelia-es6 gulp jspm
  1. Create a new project folder and move into it in the terminal
mkdir YOUR_PROJECT_NAME
cd YOUR_PROJECT_NAME
  1. Execute the following command
yo aurelia
  1. To run the app, execute the following command:
gulp watch
  1. Browse to http://localhost:9000 to see the app. You can make changes in the code found under src and the browser should auto-refresh itself as you save files.

Update the skeleton jspm dependencies

If you're inside your skeleton folder you can run the following command to update your installation and get the latest versions of the dependencies used:

yo aurelia:update

Command line options

--skip-install

yo aurelia --skip-install will skip the npm and jspm install.

--proxy

yo aurelia --proxy=http://my.proxy:8080 will install the skeleton app resepecting the given proxy settings

Creating a new page

In order to create a new Aurelia Page just enter the following command inside your project root:

yo aurelia:page YOURPAGENAME

Creating a new component

Components are very similar to pages at the moment, more difference will come later.

yo aurelia:component YOURCOMPONENTNAME

Creating a new service

yo aurelia:service YOURSERVICENAME

If you get an error like Error: spawn git ENOENT when executing the yo command, you should check whether GIT is installed and accessible from the command line

This will create a View and ViewModel with the given name inside the ./src folder

Credits

Thanks to Vildan Softic for generator-aurelia, it's so awesome that I'm forking it