npm & cmd & bash npm , cmd , bash, js, app, project, cli, shell script, dev tools, front-end, utils, script type="application/ld+json" script type="application/ld+json"



npm & cmd & bash & bin

bin

npm & cmd & bash & bin_npm

node_modules & nested

npm publish & all src files

npm & cmd & bash & bin_js_02

npm & cmd & bash & bin_npm_03

npm publish & files ​​dist​​, not all src files

OK

npm & cmd & bash & bin_js_04


$ yarn add nice-handsome-button

$ npm i -S nice-handsome-button


CMD

dev.cmd

npm & cmd & bash & bin_App_05

#!/usr/bin/env node

echo "^-v-^ app is running in development env!" && npm run start


app.cmd

npm & cmd & bash & bin_npm_06

#!/usr/bin/env node

echo "^v^ app is running in production building!" && npm run build


Bash

dev.sh

npm & cmd & bash & bin_bash_07

#!/usr/bin/env bash

echo "???? ^v^ app is running in development env!" && npm run start


app.sh

npm & cmd & bash & bin_App_08

#!/usr/bin/env bash

echo "???? ^v^ app is running in production building!" && npm run build



JSON-LD

script type="application/ld+json"

npm & cmd & bash & bin_npm_09


<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "https://scotch.io#organization",
"name": "Scotch.io",
"url": "https://scotch.io",
"sameAs": [
"http://www.facebook.com/scotchdevelopment",
"http://twitter.com/scotch_io",
"http://instagram.com/scotch_io",
"http://www.linkedin.com/in/scotch_io",
"http://plus.google.com/scotch_io"
],
"legalName": "Scotch.io, LLC",
"logo": {
"@type": "ImageObject",
"url": "https://scotch.io/img/school-logo-sticker.png",
"width": 37,
"height": 60
},
"founder": {
"@type": "Person",
"name": "Chris Sevilleja",
"image": {
"@type": "ImageObject",
"url": "https://scotch-res.cloudinary.com/image/upload/w_300,q_auto:good,f_auto,c_fill,g_face/media/1/w7Vhk81SyClJPlDQPMLh_17795826_10154678250924582_8102840950354615336_n.jpg",
"width": 300,
"height": 300
}
}
}
</script>