/
TheWitcher1991
/
square-function-js
Обзор
Документация
Войти
/
TheWitcher1991
/
square-function-js
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
cli.js
13 строк
351 B
TheWitcher1991
Init
09 янв 2021, 22:47
09 янв 2021, 22:47
c094b4e
Код
Авторство
О чём код?
#!/usr/bin/env node 'use strict'; const { spawn } = require('child_process') const electron = require('electron') const path = require('path') const appPath = path.join(__dirname, 'main.js') const args = [appPath].concat(process.argv.slice(2)) const proc = spawn(electron, args, { stdio: 'inherit' }) proc.on('close', (code) => process.exit(code))