Socket
Socket
Sign inDemoInstall

amalgamatic-h5dcsched

Package Overview
Dependencies
17
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    amalgamatic-h5dcsched

Amalgamatic plugin for the HTML5DevConf schedule


Version published
Weekly downloads
4
decreased by-33.33%
Maintainers
1
Install size
6.25 MB
Created
Weekly downloads
 

Changelog

Source

1.0.3

  • #6 Set timezone explicitly

Readme

Source

Build Status

amalgamatic-h5dcsched

Amalgamatic plugin for the HTML5DevConf Schedule

Installation

Install amalgamatic and this plugin via npm:

npm install amalgamatic amalgamatic-h5dcsched

Usage

var amalgamatic = require('amalgamatic'),
    sched = require('amalgamatic-h5dcsched');

// Add this plugin to your Amalgamatic instance along with any other plugins you've configured.
amalgamatic.add('sched', sched);

//Use it!
var callback = function (err, results) {
    if (err) {
        console.dir(err);
    } else {
        results.forEach(function (result) {
            console.log(result.name);
            console.dir(result.data);
        });
    }
};

amalgamatic.search({}, callback);

Keywords

FAQs

Last updated on 21 Oct 2014

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc