This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
73 lines
1.7 KiB
6 years ago
|
/**
|
||
|
* Copyright (c) 2015-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
const spawnSync = require('child_process').spawnSync;
|
||
|
const yarn = require('../util/yarn');
|
||
|
const spawnOpts = {
|
||
|
stdio: 'inherit',
|
||
|
stdin: 'inherit',
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Execute npm or yarn command
|
||
|
*
|
||
|
* @param {String} yarnCommand Yarn command to be executed eg. yarn add package
|
||
|
* @param {String} npmCommand Npm command to be executed eg. npm install package
|
||
|
* @return {object} spawnSync's result object
|
||
|
*/
|
||
|
function callYarnOrNpm(yarnCommand, npmCommand) {
|
||
|
let command;
|
||
|
|
||
|
const projectDir = process.cwd();
|
||
|
const isYarnAvailable =
|
||
|
yarn.getYarnVersionIfAvailable() &&
|
||
|
yarn.isGlobalCliUsingYarn(projectDir);
|
||
|
|
||
|
if (isYarnAvailable) {
|
||
|
command = yarnCommand;
|
||
|
} else {
|
||
|
command = npmCommand;
|
||
|
}
|
||
|
|
||
|
const args = command.split(' ');
|
||
|
const cmd = args.shift();
|
||
|
|
||
|
const res = spawnSync(cmd, args, spawnOpts);
|
||
|
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Install package into project using npm or yarn if available
|
||
|
* @param {[type]} packageName Package to be installed
|
||
|
* @return {[type]} spawnSync's result object
|
||
|
*/
|
||
|
function add(packageName) {
|
||
|
return callYarnOrNpm(
|
||
|
`yarn add ${packageName}`,
|
||
|
`npm install ${packageName} --save`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Uninstall package from project using npm or yarn if available
|
||
|
* @param {[type]} packageName Package to be uninstalled
|
||
|
* @return {Object} spawnSync's result object
|
||
|
*/
|
||
|
function remove(packageName) {
|
||
|
return callYarnOrNpm(
|
||
|
`yarn remove ${packageName}`,
|
||
|
`npm uninstall --save ${packageName}`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
add: add,
|
||
|
remove: remove,
|
||
|
};
|