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

aspa

v0.4.7

Published

An opinionated, lightweight and simple to use web asset packager.

Downloads

44

Readme

ASPA

NPM version

ASPA is a simple opinionated web application asset packager for Node.js.

End of Life Notice - January 2014

If you like using this package, please consider switching to ASPAX for cleaner YML syntax, a smart plugin system to handle various source file types, and automatic watching of included files (i.e. Stylus @imports). Have a look at aspax.github.io for more information.

ASPA will remain in the npm repository, but it will no longer be maintained/updated.


Make sure to check ASPA-Express ( github | npm ) for using packaged assets with Express.

ASPA

Why?

There are certainly a number of other similar tools available in the Node.js ecosystem. However, in my opinion:

  • some of them are a bit too complex and complicated (and thus 'overkill' for small projects);
  • some will perform the necessary asset file processing on application start-up, which isn't always the best approach when you're deploying in the cloud;
  • related to the point above, if you're using Stylus or you're only writing the client-side app in CoffeeScript/IcedCoffeeScript, you should still be able to keep a lean deployment size and you shouldn't have to make your server-side app dependant on those packages;
  • not all of them feature concatenation, optimization, compression and fingerprinting for scripts, stylesheets and other deployable assets (such as web fonts);
  • not all of them are processing the CSS files to correctly rewrite the URLs pointing to other fingerprinted assets.

While certainly not aiming to be a silver bullet, ASPA tries to address the above issues by providing a little a command-line utility which you can run during development or before deployment. The configuration is centralized in a single YML map file (aspa.yml) residing in the root of your folder.

Features

  • Map-file based (asset map uses a subset of YAML syntax);
  • Accepts .css, .styl and .less input for stylesheets;
  • Accepts .js, .coffee, .iced (IcedCoffeeScript), .co (Coco) and .ls (LiveScript) input for scripts;
  • Concatenates multiple script/style source files per output file;
  • Fingerprints and gzips assets in production mode.

Installation

npm install aspa

Usage

I. Keep your asset files in a separate folder outside your main web application directory.

Warning: Don't put anything directly in the public web folder, as it will be overwritten during the build process!

Sample folder structure:

/work/server                    -> web application root folder
/work/server/public             -> publicly-visible folder

/work/client                    -> root of the asset folder
/work/client/lib                -> various libraries, such as...
/work/client/lib/select2        -> ...select2
/work/client/templates          -> client-side jade templates
/work/client/scripts            -> script files
/work/client/styles             -> styleheet files

II. Create aspa.yml map file in the root of the asset folder (/work/client in the example above), describing the structure of your deployment.

Sample aspa.yml file (syntax should be quite self-explanatory):

js/main.js:
  from:
    lib/underscore.js               : ~
    lib/backbone.js                 : ~
    lib/select2.js                  : ~
    lib/iced-runtime.js             : ~
    lib/jade-runtime.js             : ~
    scripts/jst-namespace.coffee    : { bare: true }
    templates/item.jade             : ~
    templates/collection.jade       : ~
    scripts/main.coffee             : ~

css/main.css:
  from:
    lib/fontello/css/fontello.css   : ~
    styles/main.styl                : { nib: true }
    styles/item.styl                : { skip: true }

fonts/fontello.eot                  : { from: lib/fontello/font }
fonts/fontello.svg                  : { from: lib/fontello/font, compress: true }
fonts/fontello.ttf                  : { from: lib/fontello/font, compress: true }
fonts/fontello.woff                 : { from: lib/fontello/font }
images/sprite.png                   : ~
images/[email protected]                : ~
favicon.ico                         : { raw: true }

A few observations:

  • bare: true means compile that file without the top-level function safety wrapper, see more about this here;
  • .jade templates are transformed to JavaScript templating functions in JST namespace (i.e. templates/item.jade compiles to JST['templates/item'] function);
  • nib: true refers to this;
  • skip: true means don't include that file in the compiled output, just watch it for changes (in the example above, item.styl is dynamically imported into main.styl, so you don't want to include it again but you want to trigger a rebuild when its content changes;
  • if you use .jade templates, don't forget to include this runtime before;
  • if you use .iced (IcedCoffeeScript) scripts, don't forget to include this runtime before; the runtime can also be generated with iced -I window -F -p -e '' > iced-runtime.js;
  • fonts/fontello.eot: { from: lib/fontello/font } means copy /client/lib/fontello/font/fontello.eot to /server/public/fonts/fontello.eot;
  • .js and .css files are gzipped automatically in production mode, but other "compressible" assets must be explicitely marked with a compress: true option;
  • raw: true means don't fingerprint this file in production.

III. Run the aspa utility in the assets root folder to build and deploy.

During development:

aspa -r ../server Build for development, deploying to ../server/public (/public is the default).

aspa -r ../server -p pub Build for development, deploying to ../server/pub.

aspa -r ../server cleanup Clean-up ../server/public and ../server/aspa.json.

aspa -r ../server watch Watch the asset folder and rebuild automatically when a source file changes. Use this during development.

For production:

aspa -r ../server -m production Build for production, deploying to ../server/public.

Note: Building for production also:

  • creates an output map named ../server/aspa.json;
  • fingerprints generated asset packages (by prefixing them with a UNIX-timestamp string), except the ones marked with raw: true in aspa.yml;
  • compresses .js, .css and any other assets marked with compress: true in aspa.yml.

Running aspa -r ../server in the above context will generate the following output:

    /work/server/public/js/main.js
    /work/server/public/css/main.js
    /work/server/public/fonts/fontello.eot
    /work/server/public/fonts/fontello.svg
    /work/server/public/fonts/fontello.ttf
    /work/server/public/fonts/fontello.woff
    /work/server/public/images/sprite.png
    /work/server/public/images/[email protected]
    /work/server/public/favicon.ico

...while running aspa -r ../server -m production could produce this:

    /work/server/public/js/1361917868718.main.js.gz
    /work/server/public/css/1361917868718.main.js.gz
    /work/server/public/fonts/1361917868718.fontello.eot
    /work/server/public/fonts/1361917868718.fontello.svg.gz
    /work/server/public/fonts/1361917868718.fontello.ttf.gz
    /work/server/public/fonts/1361917868718.fontello.woff
    /work/server/public/images/1361917868718.sprite.png
    /work/server/public/images/[email protected]
    /work/server/public/favicon.ico
    /work/server/aspa.json

Notes

ASPA was written almost entirely in IcedCoffeeScript, a superset of CoffeeScript adding await and defer keywords to simply and powerfully streamline asynchronous control flow.

Contributing

If you find a bug or have an idea about a new feature, please don't be shy, just issue a pull request.

Endorsing the author

If you find this module useful, please endorse me on Coderwall using the link below! Thanks :-)

endorse

License

(The MIT License)

Copyright (c) 2013 Ionut-Cristian Florescu <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.