CLI
apidoc -f ".*\\.js$" -i apisrc/ -o apidoc/
apidoc.json
{
CLI
apidoc -f ".*\\.js$" -i apisrc/ -o apidoc/
apidoc.json
{
tinymce.addI18n('zh_TW',{ | |
"Cut": "\u526a\u4e0b", | |
"Heading 5": "\u6a19\u984c 5", | |
"Header 2": "\u6a19\u984c 2", | |
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002", | |
"Heading 4": "\u6a19\u984c 4", | |
"Div": "Div", | |
"Heading 2": "\u6a19\u984c 2", | |
"Paste": "\u8cbc\u4e0a", | |
"Close": "\u95dc\u9589", |
有效利用git brach特性的開發模型!
主要分成下列branch:
樣板小抄
Directory Structure
.
|-- dist/
|-- src/
|-- test/
| `-- setup.jsx # jsdom for renderIntoDocument()
|-- .babelrc
|-- .coveralls.yml
Classical 在此並不是指傳統或者是經典,而是書中作者用來代表與 Class 相關的意思。而 Modern 則沒其他用意,就是指現在常用的意思。
Recommend Book: Learning Javascript Design Patterns
推薦書籍:Javascript 設計模式
The prototype pattern focuses on creating an object that can be used as a blueprint for other objects through prototypal inheritance. This pattern is inherently easy to work with in JavaScript because of the native support for prototypal inheritance in JS.
Vagrant.configure(2) do |config| | |
config.vm.box = 'ubuntu/xenial64' | |
config.vm.network 'forwarded_port', guest: 3000, host: 3000 | |
config.vm.network 'private_network', ip: '10.10.10.10' | |
config.vm.provider 'virtualbox' do |vb| | |
vb.name = 'repo_name' | |
vb.auto_nat_dns_proxy = false | |
vb.customize ["modifyvm", :id, "--natdnsproxy1", "off" ] | |
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "off" ] | |
vb.memory = '4096' |