New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

destructor

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

destructor

Generates RequireJS configuration based on a Lazo application's app.json meta data.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
6
200%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

destructor

I am Destructor! Nya-a-a-a-a-a-a-a-a-a-a-a-a

Gets an application list of modules for a RequireJS configuration based on Lazo app.json meta data and a directory scan.

Usage

var destructor = require('destructor');

// arguments
// 1. application distribution location
// 2. options
//    - inlcude: regex of files to include; default is /.js$/
      - includeDir: regex to limit directories
      - excludeDir: regex to exclude directories
      - exclude: regex to exclude files
// 3. callback

destructor('app/dist', { include: /.js$|.hbs$/ }, function (err, list) {
    if (err) {
        throw err;
    }

    // all modules in application distribution
    console.log(list.modules);
    // modules listed in the app.json.js property
    console.log(list.application);
});

Keywords

lazojs

FAQs

Package last updated on 04 Feb 2015

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