ImportJS
Sublime Text plugin for ImportJS
Details
Installs
- Total 5K
- Win 2K
- Mac 2K
- Linux 1K
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 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 0 |
Readme
- Source
- raw.githubusercontent.com
ImportJS is a tool that helps you import dependencies in your JavaScript project. More information is available in the main import-js project.
Running import-js in Sublime Text
Install the ImportJS plugin via Package Control
Install the import-js npm package
npm install -g import-js
Open the root of your project as a folder (Project -> Add Folder to Project…)
Import a file!
Whenever you have undefined variables, open the Command Palette
(CTRL+SHIFT+P
/CMD+SHIFT+P
) and select “ImportJS: fix all imports”, or
“ImportJS: import word under cursor”.
It will be helpful to bind import_js
to easy-to-use bindings, such as:
{ "keys": ["super+alt+i"], "command": "import_js", "args": { "command": "fix" } },
{ "keys": ["super+alt+j"], "command": "import_js", "args": { "command": "word" } },
{ "keys": ["super+alt+g"], "command": "import_js", "args": { "command": "goto" } },
Available commands:
- “ImportJS: fix all imports”
- “ImportJS: import word under cursor”
- “ImportJS: goto module”
- “ImportJS: terminate daemon”
Troubleshooting
If you get an error message saying something like “Can't find import-js
executable”, you may need to specify a path to the importjs
executable in
configuration. This likely means that you are using a tool like
nvm or nodenv to manage
multiple Node versions on your system.
To fix this, you need to make sure that the code that sets up your PATH
is in
the correct location. This plugin will open a login shell to determine the
proper PATH
, so the code that sets up your PATH
needs to be in a file that
is sourced for login shells. Here's a handy table:
Shell | File |
---|---|
bash | ~/.bash_profile |
zsh (Mac OS X) | ~/.zprofile |
zsh (Linux) | ~/.zshenv or ~/.zprofile |
fish | ~/.config/fish/config.fish |
Alternatively, you can also try editing the ImportJS User Settings from the
Preferences > Package Settings > ImportJS > Settings — User menu and add the folder where the importjs
executable is located to the paths
option. Example:
{
"paths": ["/Users/USERNAME/.nvm/versions/node/v4.4.3/bin"]
}
Please note that you can't use ~ to refer to the home directory, you need to
specify the full path. To figure out where your importjs
executable is
located, you can run which importjs
from your project's directory.