Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ribbons.application

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ribbons.application - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

8

lib/application.js
var fileSystem = require("fs");
function Application(directory) {
this.directory = directory;
function Application(options) {
options = options || {};
this.directory = options.directory;
this.debug = options.debug;
}

@@ -17,2 +19,3 @@

this.sensors[sensor].platforms = this.platforms;
this.sensors[sensor].debug = this.debug;
this.sensors[sensor].init();

@@ -22,2 +25,3 @@ }

this.actuators[actuator].platforms = this.platforms;
this.actuators[actuator].debug = this.debug;
this.actuators[actuator].init();

@@ -24,0 +28,0 @@ }

{
"name": "ribbons.application",
"version": "0.0.5",
"version": "0.0.6",
"author": "Brian Mulloy <b@ribbonfarm.org>",

@@ -5,0 +5,0 @@ "description": "Prototype for Ribbons applications.",

@@ -6,3 +6,6 @@ var util = require('util');

// make app global
app = module.exports = new Application(__dirname);
app = module.exports = new Application({
directory: __dirname,
debug: true
});

@@ -9,0 +12,0 @@ // initialize components

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