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.1.0 to 1.1.1

19

lib/info.js

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

program
.version('1.1.0')
.version('1.1.1')
.action(() => {
console.log("\n \n šŸ”„ Welcome to the Kasfy CLI šŸ”„ Version : 1.1.0 šŸ”„\n");
console.log("\n \n šŸ”„ Welcome to the Kasfy CLI šŸ”„ Version : 1.1.1 šŸ”„\n");
console.log("\n šŸ”° Kasfy Documentation āž”ļø https://kasfy.js.org šŸŒ\n \n");

@@ -62,3 +62,3 @@ });

name: 'indata',
message: 'Are you Need to install dependencies?'
message: 'Are you Need to install dependencies? (y or n)'
}]).then(function(answer) {

@@ -71,4 +71,5 @@

console.log("\n\nāœ… Get Start Your project \n \t run: kasfy serve ");
console.log("\n\nāœ… Get Start Your project \n \t run: cd "+projectname+"\n \t run: kasfy serve ");
} else {
console.log("šŸ™ƒ Oops...");
console.log("\n\nāŒ Mannually install dependencies after run your project. \n run : npm install");

@@ -82,3 +83,3 @@ }

shell.cd(path);
console.log("šŸ”„ kasfy cli creating new project");
console.log("kasfy cli creating new project");
shell.exec('git clone https://github.com/kasfy/kasfy.git kasfy-latest-release');

@@ -104,4 +105,5 @@

console.log("\n\nGet Start Your project \n \t run: kasfy serve ");
console.log("\n\nGet Start Your project \n \t run: cd "+projectname+"\n \t run: kasfy serve ");
} else {
console.log("Oops...");
console.log("\n\nMannually install dependencies after run your project. \n run : npm install");

@@ -127,3 +129,3 @@ }

name: 'indata',
message: 'Are you Need to install dependencies?'
message: 'Are you Need to install dependencies? (y or n)'
}]).then(function(answer) {

@@ -136,4 +138,5 @@

console.log("\n\nāœ… Get Start Your project \n \t run: kasfy serve ");
console.log("\n\nāœ… Get Start Your project \n \t run: cd "+projectname+"\n \t run: kasfy serve ");
} else {
console.log("šŸ™ƒ Oops...");
console.log("\n\nāŒ Mannually install dependencies after run your project. \n run : npm install");

@@ -140,0 +143,0 @@ }

@@ -40,1 +40,49 @@ /* The NodeJS Framework for Smart Back-End

program
.command('migrate')
.alias('mig')
.description('Migration command')
.action(() => {
if (!fs.existsSync('./node_modules')) {
console.log("\n āŒ Not Found `node_modules` directory. \n");
console.log("\n ā—ļø run command: npm install \n");
process.exit(1);
}
if (!fs.existsSync('./app') && !fs.existsSync('./config') && !fs.existsSync('./public') && !fs.existsSync('./routes')){
console.log("\n āŒ Not Found kasfy folder stucture. \n");
console.log("\n ā—ļø Reinstall kasfy new project \n");
process.exit(1);
}
const npm = require("npm");
npm.load();
npm.load(() => npm.run("migrate"));
});
program
.command('migrate:fresh')
.alias('mig:fresh')
.description('Fresh Migration command')
.action(() => {
if (!fs.existsSync('./node_modules')) {
console.log("\n āŒ Not Found `node_modules` directory. \n");
console.log("\n ā—ļø run command: npm install \n");
process.exit(1);
}
if (!fs.existsSync('./app') && !fs.existsSync('./config') && !fs.existsSync('./public') && !fs.existsSync('./routes')){
console.log("\n āŒ Not Found kasfy folder stucture. \n");
console.log("\n ā—ļø Reinstall kasfy new project \n");
process.exit(1);
}
const npm = require("npm");
npm.load();
npm.load(() => npm.run("migrate:fresh"));
});
{
"name": "kasfy",
"version": "1.1.0",
"version": "1.1.1",
"description": "node js framework for smart back-end",

@@ -12,3 +12,3 @@ "main": "cli.js",

},
"author": "katheesh [https://github.com/katheesh]",
"author": "katheeskumar [https://github.com/katheesh]",
"license": "MIT",

@@ -15,0 +15,0 @@ "dependencies": {

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