Download this extension from the Visual Studio Code Marketplace
JS Icon sourced from github.com/voodootikigod/logo.js JS Snippets sourced from github.com/xabikos/vscode-javascript and github.com/akamud/vscode-javascript-snippet-pack
A snippet pack to make you more productive working with JavaScript.
This extension ships a bunch of useful code snippets for the JavaScript and TypeScript editors.
Here's the full list of all the snippets:
console.dir(${1});
console.error(${1});
console.info(${1});
console.log(${1});
console.warn(${1});
debugger;
${1:document}.addEventListener('${2:load}', function(e) {
${3:// body}
});
${1:document}.appendChild(${2:elem});
${1:document}.removeChild(${2:elem});
${1:document}.createElement(${2:elem});
${1:document}.createDocumentFragment();
${1:document}.classList.add('${2:class}');
${1:document}.classList.toggle('${2:class}');
${1:document}.classList.remove('${2:class}');
${1:document}.getElementById('${2:id}');
${1:document}.getElementsByClassName('${2:class}');
${1:document}.getElementsByTagName('${2:tag}');
${1:document}.getAttribute('${2:attr}');
${1:document}.setAttribute('${2:attr}', ${3:value});
${1:document}.removeAttribute('${2:attr}');
${1:document}.innerHTML = '${2:elem}';
${1:document}.textContent = '${2:content}';
${1:document}.querySelector('${2:selector}');
${1:document}.querySelectorAll('${2:selector}');
${1:array}.forEach(function(item) {
${2:// body}
});
function ${1:methodName} (${2:arguments}) {
${3:// body}
}
function(${1:arguments}) {
${2:// body}
}
${1:object}.prototype.${2:method} = function(${3:arguments}) {
${4:// body}
}
(function(${1:window}, ${2:document}) {
${3:// body}
})(${1:window}, ${2:document});
${1:method}.call(${2:context}, ${3:arguments})
${1:method}.apply(${2:context}, [${3:arguments}])
${1:functionName}: function(${2:arguments}) {
${3:// body}
}
JSON.parse(${1:obj});
JSON.stringify(${1:obj});
setInterval(function() {
${0:// body}
}, ${1:1000});
setTimeout(function() {
${0:// body}
}, ${1:1000});
"use strict";
alert("${1:msg}");
confirm("${1:msg}");
prompt("${1:msg}");
Trigger | Content |
---|---|
imp→ |
imports entire module import fs from 'fs'; |
imn→ |
imports entire module without module name import 'animate.css' |
imd→ |
imports only a portion of the module using destructing import {rename} from 'fs'; |
ime→ |
imports everything as alias from the module import * as localAlias from 'fs'; |
ima→ |
imports only a portion of the module as alias import { rename as localRename } from 'fs'; |
rqr→ |
require package require(''); |
req→ |
require package to const const packageName = require('packageName'); |
mde→ |
default module.exports module.exports = {}; |
env→ |
exports name variable export const nameVariable = localVariable; |
enf→ |
exports name function export const log = (parameter) => { console.log(parameter);}; |
edf→ |
exports default function export default function fileName (parameter){ console.log(parameter);}; |
ecl→ |
exports default class export default class Calculator { }; |
ece→ |
exports default class by extending a base one export default class Calculator extends BaseClass { }; |
Trigger | Content |
---|---|
con→ |
adds default constructor in the class constructor() {} |
met→ |
creates a method inside a class add() {} |
pge→ |
creates a getter property get propertyName() {return value;} |
pse→ |
creates a setter property set propertyName(value) {} |
Trigger | Content |
---|---|
fre→ |
forEach loop in ES6 syntax array.forEach(currentItem => {}) |
fof→ |
for ... of loop for(const item of object) {} |
fin→ |
for ... in loop for(const item in object) {} |
anfn→ |
creates an anonymous function (params) => {} |
nfn→ |
creates a named function const add = (params) => {} |
dob→ |
destructing object syntax const {rename} = fs |
dar→ |
destructing array syntax const [first, second] = [1,2] |
sti→ |
set interval helper method setInterval(() => {}); |
sto→ |
set timeout helper method setTimeout(() => {}); |
prom→ |
creates a new Promise return new Promise((resolve, reject) => {}); |
thenc→ |
adds then and catch declaration to a promise .then((res) => {}).catch((err) => {}); |