@jbonigomes/react-impress-like-slides
Version:
React presentation deck framework heavily inspired by Impress.js
15 lines (10 loc) • 467 B
JavaScript
;
const appName = process.argv[2];
const { spawnSync } = require('child_process');
const url = 'ssh://git@stash.barcapint.com:7999/~g01236638/react-impress-like-slides.git';
spawnSync('git', ['clone', url, `${process.cwd()}/${appName}`]);
spawnSync('npm', ['install', '--prefix', `${process.cwd()}/${appName}`]);
console.log('Your app has been successfully installed');
console.log(`$ cd ${appName}`);
console.log('$ npm start');