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

diagrams

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diagrams - npm Package Compare versions

Comparing version 0.9.5 to 0.9.6

test.html

4

package.json
{
"name": "diagrams",
"version": "0.9.5",
"version": "0.9.6",
"description": "Generate Flowcharts, Network Sequence, Dot, and Railroad Diagrams",

@@ -15,3 +15,3 @@ "main": "src/diagrams.js",

"commander": "2.8.1",
"electron-prebuilt": "0.36.2",
"electron": "1.3.1",
"glob": "^7.1.2",

@@ -18,0 +18,0 @@ "railroad-diagrams": "1.0.0",

@@ -1,7 +0,3 @@

const electron = require('electron');
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
const {app,BrowserWindow} = require('electron');
console.log(process.argv);
// Keep a global reference of the window object, if you don't, the window will

@@ -28,8 +24,5 @@ // be closed automatically when the JavaScript object is garbage collected.

height: 1000,
show: true,
minimizable: true
show: false
});
mainWindow.minimize();
// and load the index.html of the app.

@@ -36,0 +29,0 @@ mainWindow.loadURL('file://' + __dirname + '/index.html');

@@ -1,2 +0,2 @@

var electron = require('electron-prebuilt'),
var electron = require('electron'),
proc = require('child_process'),

@@ -3,0 +3,0 @@ path = require('path');

@@ -1,4 +0,2 @@

const electron = require('electron');
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
const {app,BrowserWindow} = require('electron');

@@ -26,8 +24,5 @@ // Keep a global reference of the window object, if you don't, the window will

height: 1000,
show: true,
minimizable: true
show: false
});
mainWindow.minimize();
// and load the index.html of the app.

@@ -34,0 +29,0 @@ mainWindow.loadURL('file://' + __dirname + '/index.html');

@@ -1,2 +0,2 @@

var electron = require('electron-prebuilt'),
var electron = require('electron'),
proc = require('child_process'),

@@ -14,3 +14,3 @@ path = require('path');

child.stdout.on('data', function (data) {
console.log(data.toString());
console.log(data.toString());
});

@@ -17,0 +17,0 @@

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