JavaScript代码片段
Sublime Text 2 & 3中JavaScript/JS编程的代码片段
标签 代码片段
详细信息
安装
- 总数 206K
- Win 137K
- Mac 39K
- Linux 30K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 7 | 2 | 4 | 2 | 3 | 4 | 2 | 3 | 1 | 2 | 3 | 1 | 1 | 2 | 2 | 7 | 3 | 3 | 3 | 2 | 7 | 3 | 0 | 0 | 2 | 3 | 2 | 4 | 3 | 3 | 1 | 2 | 1 | 7 | 1 | 2 | 4 | 2 | 0 | 6 | 2 | 1 | 5 | 7 | 2 | 2 |
Mac | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 2 | 1 | 2 | 0 | 0 | 0 | 0 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 3 | 2 | 1 | 3 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 4 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 2 | 2 |
自述文件
Sublime Text Editor 2 / 3 - JavaScript 代码片段
Sublime Text 2 / 3中的JavaScript/JS代码片段大全。
安装
Sublime Text 2 / 3 - 包控制
通过包控制安装:请访问 http://wbond.net/sublime_packages/community,搜索 JavaScript 代码片段 或通常的键词 js 或 javascript 是合适的。您也可以手动克隆到您的Sublime包目录中安装。
纯净代码片段
[afn]匿名函数
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 ${1:methodName} (${2:arguments}) {
${0:// body...}
}
[ii]立即调用的函数表达式
(function () {
${0:// body...}
})();
[me]module.exports
module.exports = ${1}
[okfe]Object.keys和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'
行为驱动开发
[desc]describe
describe('${1:description}', function () {
${0:// body...}
})
[ita]异步it
it('${1:description}', function (done) {
${0:// body...}
})
[its]同步it
it('${1:description}', function () {
${0:// body...}
})
JavaScript 代码风格
使用JavaScript Standard 代码风格。查看规则在这里。
许可证
版权所有2012-2015,JP Richardson [email protected]
MIT