Skip to content

Instantly share code, notes, and snippets.

@yuanliwei
Created February 15, 2019 10:17
Show Gist options
  • Save yuanliwei/4faf447b31fef2481ab7d43a3aea78ab to your computer and use it in GitHub Desktop.
Save yuanliwei/4faf447b31fef2481ab7d43a3aea78ab to your computer and use it in GitHub Desktop.
AppData/Roaming/Code/User/snippets/javascript.json
{
	// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	// "Print to console": {
	// 	"prefix": "log",
	// 	"body": [
	// 		"console.log('$1');",
	// 		"$2"
	// 	],
	// 	"description": "Log output to console"
	// }
	"CommonJS require": {
		"prefix": "req",
		"body": [
			"const ${1:module} = require('${1:module}');",
		],
		"description": "CommonJS require"
	},
	"new Promise": {
		"prefix": "pro",
		"body": [
			"new Promise(function(resolve, reject) { \n\t$0\n});",
		],
		"description": "new Promise"
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment