Created
January 15, 2019 21:10
-
-
Save korzio/8cc5ccd352b936c008f01a55245c74a8 to your computer and use it in GitHub Desktop.
medium-basic-create.sh
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
mkdir my-cli # create the project's directory | |
cd my-cli # go to new location | |
npm init --yes # initialise NPM package | |
echo "console.log('Hello, world!')" > server.js # create hello world example | |
npm start # run the script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment