Skip to content

Instantly share code, notes, and snippets.

View Kijacode's full-sized avatar
:electron:
Creative

Danford Kija Kijacode

:electron:
Creative
View GitHub Profile
@Kijacode
Kijacode / countries.json
Created November 10, 2022 04:48 — forked from amitjambusaria/countries.json
Countries JSON with region, flag, currency and capital
[
{
"name": "Afghanistan",
"code": "AF",
"capital": "Kabul",
"region": "AS",
"currency": {
"code": "AFN",
"name": "Afghan afghani",
"symbol": "؋"
@Kijacode
Kijacode / npmcrashcourse.txt
Created March 17, 2019 15:47 — forked from bradtraversy/npmcrashcourse.txt
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)