You could add a copy button for the npm command using react-zeroclipboard. Not sure exactly what it should say.
var ReactZero = require('react-zeroclipboard');
// ...
var command = "npm install --save " + packageName;
<ReactZero text={command}>
<button>copy "{command}"</button>
</ReactZero>
You could add a copy button for the npm command using react-zeroclipboard. Not sure exactly what it should say.