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

@rosswilson23/create-boilerplate

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rosswilson23/create-boilerplate - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

README.md

9

bin/create.js

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

#!/usr/bin/env node
const { execSync } = require('child_process');

@@ -7,3 +9,3 @@ const fs = require('fs');

if (!appName) {
console.error('You must provide a valid for your application.');
console.error('You must provide a valid name for your application.');
process.exit(1);

@@ -13,3 +15,3 @@ }

if (fs.existsSync(appName)) {
console.error(`The name ${appName} already exists in your current directory. Please choose another.`);
console.error(`The name "${appName}" already exists in your current directory. Please choose another.`);
process.exit(1);

@@ -27,3 +29,4 @@ }

console.log('Installing dependencies...');
execSync(`cd ${appName} && npm i`);
execSync(`cd ${appName}`);
execSync('npm i', { stdio: 'inherit' });

@@ -30,0 +33,0 @@ console.log('Opening in VSCode...')

{
"name": "@rosswilson23/create-boilerplate",
"version": "1.0.0",
"version": "1.0.1",
"description": "Starter project generator",

@@ -9,3 +9,5 @@ "main": "index.js",

},
"bin": "./bin/create.js",
"bin": {
"create-boilerplate": "bin/create.js"
},
"repository": {

@@ -12,0 +14,0 @@ "type": "git",

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