Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

aspax-ls-handler

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aspax-ls-handler

Plugin enabling ASPAX to handle LiveScript files.

Source
npmnpm
Version
0.7.2
Version published
Weekly downloads
42
200%
Maintainers
1
Weekly downloads
 
Created
Source

What's this?

NPM version Dependency Status

A plugin that enables ASPAX to handle LiveScript files.

Installation

Type this in the folder where you're running ASPAX:

npm install aspax-ls-handler

If you're running ASPAX in a Node.js application root folder, consider using the --save-dev option to avoid deploying this plugin to your production environment:

npm install aspax-ls-handler --save-dev

Usage

Simply add .ls source files in aspax.yml:

app.js:
  - lib.js
  - script-1.ls|bare
  - script-2.ls

Available flags

  • bare: compile without the top-level function safety wrapper - see more here.

    Basically, this:

      $ !-> console.log \hi!
    

    ...compiles to this with the bare flag:

      $(function() {
        return console.log('hi!');
      });
    

    ...and to this without the flag:

      (function() {
        $(function() {
          return console.log('hi!');
        });
      }).call(this);
    

Endorsing the author

If you find this piece of software useful, please tweet about ASPAX and/or endorse me on Coderwall!

Keywords

aspax

FAQs

Package last updated on 12 Feb 2014

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