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

kasfy

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kasfy - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

22

cli.js
#!/usr/bin/env node
const shell = require('shelljs')
const fs = require('fs');

@@ -15,7 +16,24 @@ if (!shell.which('git')) {

program
.version('1.0.5')
.version('1.0.6')
.action(() => {
console.log("\n \n 🔥 Welcome to the Kasfy CLI 🔥 Version : 1.0.5 🔥\n \n");
console.log("\n \n 🔥 Welcome to the Kasfy CLI 🔥 Version : 1.0.6 🔥\n \n");
});
program
.command('serve')
.alias('dev')
.description('✅ Serve the application')
.action(() => {
if (!fs.existsSync('./node_modules'))
throw new Error(
'Error: node_modules directory missing'
);
const npm = require("npm");
npm.load();
npm.load(() => npm.run("start"));
});
if (process.platform == 'linux') {

@@ -22,0 +40,0 @@ program

{
"name": "kasfy",
"version": "1.0.5",
"version": "1.0.6",
"description": "node js framework for smart back-end",

@@ -16,2 +16,3 @@ "main": "cli.js",

"commander": "^6.0.0",
"fs": "0.0.1-security",
"shelljs": "^0.8.4"

@@ -32,3 +33,6 @@ },

"url": "https://github.com/kasfy/kasfy/issues"
},
"devDependencies": {
"npm": "^6.14.8"
}
}
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