JavaScript Snippets
Snippets for JavaScript / JS Programming in Sublime Text 2 & 3
Labels snippets
Details
Installs
- Total 207K
- Win 137K
- Mac 39K
- Linux 30K
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 1 | 1 | 1 | 2 | 2 | 5 | 5 | 3 | 3 | 0 | 2 | 5 | 1 | 0 | 4 | 3 | 1 | 0 | 3 | 1 | 5 | 1 | 2 | 1 | 3 | 2 | 5 | 5 | 5 | 4 | 3 | 1 | 0 | 4 | 3 | 2 | 1 | 3 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 2 | 2 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 2 | 0 | 1 | 0 | 0 | 0 |
Linux | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 4 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 2 | 1 | 0 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text Editor 2 / 3 - JavaScript Snippets
JavaScript / JS snippets for your Sublime Text 2 / 3 Fu.
Install
Sublime Text 2 / 3 - Package Control
Install via package control: http://wbond.net/sublime_packages/community Search for JavaScript Snippets or typically the keywords js or javascript are suitable. You can install manually be cloning into your Sublime package directory.
Vanilla Snippets
[afn] anonymous function
function (${1:arguments}) {
${0:// body...}
}
[cd] console.dir
console.dir(${1:obj})${0}
[ce] console.error
console.error(${1:error})${0}
[ci] console.info
console.info(${1:msg})${0}
[cl] console.log
console.log(${1:msg})${0}
[cli] console.log with util.inspect
console.log(require('util').inspect(${1:obj}, true, ${2:10}, true))${0}
[ct] console.trace
console.trace(${1:msg})${0}
[cw] console.warn
console.warn(${1:msg})${0}
[fn] function
function ${1:methodName} (${2:arguments}) {
${0:// body...}
}
[ii] Immediately-invoked function expression
(function () {
${0:// body...}
})();
[me] module.exports
module.exports = ${1}
[okfe] Objects.keys and forEach
Object.keys(${1:obj}).forEach(function (key) {
${0:// body...}
})
[pe] process.exit
process.exit()
[proto] prototype
${1:ClassName}.prototype.${2:methodName} = function (${3:arguments}) {
${0:// body...}
}
[req] require
require('${1:package}')${0}
[sto] setTimeout
setTimeout(function () {
${2:// body...}
}, ${1:millis})
[sti] setInterval
setInterval(function () {
${2:// body...}
}, ${1:millis})
[us] use strict
'use strict'
Behaviorial Driven Development
[desc] describe
describe('${1:description}', function () {
${0:// body...}
})
[ita] asychronous it
it('${1:description}', function (done) {
${0:// body...}
})
[its] synchronous it
it('${1:description}', function () {
${0:// body...}
})
JavaScript Style
Uses JavaScript Standard Code Style. Read the rules here.
License
Copyright 2012-2015, JP Richardson jprichardson@gmail.com
MIT