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

create-laju-app

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-laju-app - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

19

bin/cli.js

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

const fs = require('fs');
const { execSync } = require('child_process');

@@ -62,9 +63,15 @@ program

console.log('✅ Project created successfully!');
// Change directory and run setup commands
process.chdir(targetPath);
console.log('📦 Installing dependencies...');
execSync('npm install', { stdio: 'inherit' });
console.log('📝 Copying environment file...');
execSync('cp .env.example .env', { stdio: 'inherit' });
console.log('🔄 Running migrations...');
execSync('npx knex migrate:latest', { stdio: 'inherit' });
console.log('🎉 Project created successfully!');
console.log('');
console.log('To get started:');
console.log(` cd ${projectDirectory}`);
console.log(' npm install');
console.log(' npm run dev');
console.log('🚀 Your project is ready! You can now start developing.');
console.log('🔥 npm run dev to start the development server.');
console.log('📦 npm run build to build the production files.');
} catch (error) {

@@ -71,0 +78,0 @@ console.error('Error:', error.message);

{
"name": "create-laju-app",
"version": "1.0.4",
"version": "1.0.5",
"keywords": [

@@ -18,2 +18,3 @@ "laju",

"dependencies": {
"child_process": "^1.0.2",
"commander": "^11.0.0",

@@ -28,4 +29,2 @@ "degit": "^2.8.4",

}
}
}
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