Skip to content

Instantly share code, notes, and snippets.

View stanleycyang's full-sized avatar
🎯
Focusing

Stanley Yang stanleycyang

🎯
Focusing
View GitHub Profile
@stanleycyang
stanleycyang / README-Template.md
Created June 22, 2017 00:11 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@stanleycyang
stanleycyang / package.json
Last active October 24, 2022 04:02 — forked from kentcdodds/package.json
setup script for my workshops
{
"name": "workshop-setup",
"version": "1.0.0",
"description": "This is the common setup script for most of my workshops",
"bin": "./setup.js"
}
@stanleycyang
stanleycyang / package.json
Created October 24, 2022 02:23 — forked from kentcdodds/package.json
Validates that the versions of tools specified in `engines` in the package.json are installed on the machine.
{
"name": "workshop-computer-validator",
"version": "1.0.0",
"description": "I use this to validate people's computers have the proper versions of node and npm installed for a workshop",
"bin": "./validate-system.js",
"dependencies": {
"semver": "7.1.3"
}
}