Last active
November 27, 2019 22:37
-
-
Save heathdrobertson/8f29733b19805a3a13a5d0ddd2637f2b to your computer and use it in GitHub Desktop.
Node.js & Express Framework
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
with import <nixpkgs> {}; | |
# with pkgs; | |
stdenv.mkDerivation { | |
name = "Express API"; | |
buildInputs = [python37 nodejs]; | |
shellHook = '' | |
npm install bitcoin-core bitcoinjs-lib bitcoinjs-message body-parser crypto-js express hex2ascii morgan nodemon | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment