ModJS - JavaScript Workflow Tooling
Mod for Sublime Text
Details
Installs
- Total 551
- Win 331
- Mac 151
- Linux 69
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
sublime-mod
Mod for Sublime Text
Getting Started
Install package control
First, install Package Control for Sublime Text 2: * Sublime Package Control: this is the easiest way to install this package * After installing Package Control, restart Sublime Text.
Install sublime-mod
Option #1: Install module using package control
- Now inside Sublime Text open the Command Palette (
command+shift+p
on OS X, orctrl+shift+p
on Linux/Windows). - Select “Package Control: Install Package”, after a few seconds a list will appear. Search for
sublime-mod
and click to install.
Option #2: Install module directly
If you weren't able to find the package on Package Control, go to your Sublime Text Packages
directory, located here:
* OS X: ~/Library/Application Support/Sublime Text 2/Packages/
* Linux: ~/.Sublime Text 2/Packages/
* Windows: %APPDATA%/Sublime Text 2/Packages/
Add the sublime-mod
module:
Without Git: Download the latest source zip from github and extract the files into a new folder inside your Sublime Text “Packages” directory.
With Git: Clone the repository in your Sublime Text “Packages” directory:
git clone git://github.com/yuanyan/sublime-mod.git
Modfile
Add a Modfile to in your project root.
Build System > Mod
- In Sublime Text 2, go to
Tools > Build System
, and selectMod
as your build system - To build:
ctrl + b
on Linux/Windows orcommand + b
on OS X
build-on-save
To enable build-on-save
, you first have to save your project in Sublime Text by going to Project > Save Project As
. Then go to your project folder and settings
line from the example below to your myProject.sublime-project
file.
For each project that you want to take advantage of this feature, you will have to modify the the
.sublime-project
file.
Build Settings
In your project folder
{
"folders":
[
{ "path": "/C/path-to-your-project-here" }
],
"settings": { "build_on_save": 1 }
}
To build on save, keep the value at 1
. To disable build on save, change the value to 0
.
A build-on-save word of caution
Running
mod
every time you hitctrl + s
will be a great productivity booster when used wisely. But if you have lots of processor-intensive tasks that take more than a few seconds to run, this feature might get annoying pretty fast.