Skip to content

Instantly share code, notes, and snippets.

@mryechkin
Last active August 22, 2022 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mryechkin/a80a22bb2651bde70c9aa2fb4d925bc5 to your computer and use it in GitHub Desktop.
Save mryechkin/a80a22bb2651bde70c9aa2fb4d925bc5 to your computer and use it in GitHub Desktop.
Node script to run NPM commands programatically. This example runs `npm list` and parses the output to get the currently installed versions of project dependencies.
const fs = require('fs');
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const package = require('../package.json');
const dependencies = Object.keys(packageData.dependencies).map((dep) => dep);
let promises = [];
if (dependencies && dependencies.length) {
const filteredList = ['@wtf-ds/core', 'react', 'styled-components'];
promises = filteredList.map(async (name) => {
const { stdout } = await exec(`npm list --depth=0 ${name} | grep ${name}`);
const idx = stdout.indexOf(name);
const version = stdout.substring(idx + name.length + 1).replace('\n', '');
return { name, version };
});
}
Promise.all(promises).then((result) => {
const data = JSON.stringify(result, null, 2);
fs.writeFileSync('dependencies.json', data);
});
@mryechkin
Copy link
Author

Check out my post here for more details on this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment