New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

AssetPipeline

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

AssetPipeline

Provides Assets

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

AssetPipeline

Smashes, Caches, Slices, & Dices your static assets.

The asset pipeline is a simple middleware provider that serves static assets. It has modules for file version caching, compiling things like coffeescript and stylus or sass, minifying, obfuscating, and appending scripts and stylesheets, slicing up the AST of javascript files, to remove sensitive code before it's sent to the client, etc. And also can send notifications to the client when a file changes (not implemented). Perhaps in order to dynamically reload stylesheets, scripts, or html templates.

The second part is a clientside component which creates a list of script/stylesheet tags and watches for changes from the server.

Example

  //adds all the files in app
  AssetPipe.script()
    .root(__dirname + "../app/")
    .addFiles(__dirname + "../app")
    .process(CompileCoffee)
    .process(SliceSensitiveMethods)
    .process(Modularize)
    .process(Minify)

FAQs

Package last updated on 13 Apr 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc