Last active
August 22, 2022 13:36
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check out my post here for more details on this