apm init --package
產生「~/Project」資料夾
執行
$ mkdir ~/Project -p
切換到「~/Project」資料夾
執行
$ cd ~/Project
初始「hello」專案
執行
$ apm init --package hello
檢視「hello」檔案結構
執行
$ tree hello
顯示
hello
├── CHANGELOG.md
├── keymaps
│ └── hello.cson
├── lib
│ ├── hello.coffee
│ └── hello-view.coffee
├── LICENSE.md
├── menus
│ └── hello.cson
├── package.json
├── README.md
├── spec
│ ├── hello-spec.coffee
│ └── hello-view-spec.coffee
└── styles
└── hello.less
5 directories, 11 files
建立連結
執行
$ apm link hello
顯示
/home/user/.atom/packages/hello -> /home/user/Project/hello
顯示目前連結的專案
執行
$ apm links
顯示
/home/user/.atom/dev/packages (0)
└── (no links)
/home/user/.atom/packages (1)
└── hello -> /home/user/Project/hello
用「atom」開啟「hello」專案
執行
$ atom hello
解除「hello」連結
執行
apm unlink hello
顯示
Unlinking /home/user/.atom/packages/hello ✓
其他方式
執行 「Atom編輯器的功能選單」
的 「Packages / Package Generator / Generate Atom Package」
更多參考
- Github / atom / package-generator
- Atom Flight Manual / 3 : Hacking Atom / 3.3 Package: Word Count