Socket
Socket
Sign inDemoInstall

ckn

Package Overview
Dependencies
6
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.15 to 2.0.16

11

bin/index.js

@@ -5,3 +5,3 @@ #!/usr/bin/env node

import { updater } from "../lib/updater.js";
import { exec } from "child_process";
import { exec,spawn } from "child_process";
import { ckn } from "../ckn.js";

@@ -20,2 +20,11 @@

}
else if (cmd == "run") {
let cmd = spawn('nodemon', ['-e','js,ejs,cknview']) ;
cmd.stdout.on('data' , data => {
ckn.log.info(data.toString());
});
cmd.stderr.on('data' , data => {
ckn.log.error(data.toString());
});
}
else if (cmd == "update") {

@@ -22,0 +31,0 @@ updater.exe();

2

package.json
{
"name": "ckn",
"version": "2.0.15",
"version": "2.0.16",
"description": "CKN Framework",

@@ -5,0 +5,0 @@ "main": "ckn.js",

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