Sencha Cmd is a cross-platform command line tool that provides many automated tasks
around the full life-cycle of your applications from generating a new project to
deploying an application to production.
{@img sencha-command-128.png}
Sencha Cmd provides a collection of powerful time-saving features that
work together and in conjunction with the Sencha Ext JS and Sencha Touch frameworks.
Sencha Cmd provides the following capabilities:
Sencha Cmd is designed for Sencha Ext JS version 4.1.1a or higher and Sencha Touch
version 2.1 or higher. Many of the new features of Sencha Cmd require framework support
that is only available at these version levels. There are some low-level commands that
can be used for older versions of Sencha frameworks or JavaScript in general.
If you are using an older version of Ext JS, you may use Sencha Cmd's build
command to
build via your JSB file. In other words, Sencha Cmd can replace JSBuilder to produce a
compressed build of the files described in a JSB file. Sencha Cmd will not update your JSB
file as was done by the previous SDK Tools v2.
Sencha Touch 2.0.x requires SDK Tools v2.
Follow these steps to set up your system and start using Sencha Cmd:
To verify that Sencha Cmd is working properly, open a command line, change directory to
your application, and type the sencha command.
You should see output that starts with:
Sencha Cmd v3.1.n
...
If this message appears and the version number is 3.1.n or higher, you are all set.
The Sencha Cmd web server lets you serve files from your applications directory.
Use this command to start the web server:
sencha fs web [-port 8000] start -map <dir_name>
(You can use any available TCP port number or omit it and use the default.)
To access the Sencha Cmd web server, use:
http://localhost:8000/
New to Sencha Cmd v3.1 is the sencha upgrade
command. Once you have a version of Sencha
Cmd with the upgrade
command, you won't need to manually download Sencha
Cmd updates again.
Check for new updates to Sencha Cmd:
sencha upgrade --check
Without the --check
option, the sencha upgrade
command downloads and installs the
latest version if you don't already have it:
sencha upgrade
If you want to check for pre-release (a.k.a. "beta") releases, use:
sencha upgrade --check --beta
To install the latest beta version:
sencha upgrade --beta
After the installer is done, start a new console or terminal
to pick up the changes to your PATH environment variable.
Because multiple versions of Sencha Cmd can be installed side-by-side, you can safely try
the Beta channel and then uninstall the beta (or adjust the PATH) to go back to the stable
version. Upgrading your applications using sencha app upgrade
however, is something you
may need "roll back" if you downgrade to an older Sencha Cmd.
Sencha Cmd features are arranged in categories (or modules) and commands:
sencha [category] [command] [options...] [arguments...]
Help is available using the help
command.
sencha help [module] [action]
For example, try this:
sencha help
And you should see this:
Sencha Cmd v3.1.n
...
Options
* --cwd, -cw - Sets the directory from which commands should execute
* --debug, -d - Sets log level to higher verbosity
* --nologo, -n - Suppress the initial Sencha Cmd version display
* --plain, -pl - enables plain logging output (no highlighting)
* --quiet, -q - Sets log level to warnings and errors only
* --sdk-path, -s - The location of the SDK to use for non-app commands
* --time, -ti - Display the execution time after executing all commands
Categories
* app - Perform various application build processes
* compass - Wraps execution of compass for sass compilation
* compile - Compile sources to produce concatenated output and metadata
* fs - Utility commands to work with files
* generate - Generates models, controllers, etc. or an entire application
* io - Create, deploy and manage applications on the Sencha.io cloud platform
* iofs - Manage Files stored in the Sencha.io cloud platform
* manifest - Extract class metadata
* package - Manages local and remote packages
* repository - Manage local repository and remote repository connections
* theme - Commands for low-level operations on themes
Commands
* ant - Invoke Ant with helpful properties back to Sencha Cmd
* build - Builds a project from a legacy JSB3 file.
* config - Load a properties file or sets a configuration property
* help - Displays help for commands
* js - Executes arbitrary JavaScript file(s)
* upgrade - Upgrades Sencha Cmd
* which - Displays the path to the current version of Sencha Cmd
In many cases, Sencha Cmd requires that you set a specific current directory. Or it may
just need to know details about the relevant SDK. The appropriate SDK can be determined
automatically by Sencha Cmd when it is run from a generated application folder or, for
some few commands, from an extracted SDK folder.
Important For the following commands, Sencha Cmd needs to be run from the root folder
of a generated application. The commands fail if not run from the application's root folder.
* `sencha generate ...` (for commands other than `app`, `package` and `workspace`)
* `sencha app ...`
To generate an application, run the following command from an extracted SDK folder:
cd /path/to/SDK
sencha generate app ...
Or you can use the -sdk
switch:
sencha -sdk /path/to/sdk generate app ...
When using the compiler, Sencha Cmd detects the framework in use when run from an
application folder. If you are not running from a generated application, you may need to
use the -sdk
switch:
sencha -sdk /path/to/sdk compile ...
Important Do not specify the -sdk
parameter for sencha app
commands. As noted
above, these commands must be run from the application's root folder and therefore
automatically know which SDK to use. Using -sdk
on these commands causes Sencha Cmd
to believe your current directory is the SDK specified which is not the proper current
directory for an application.
The starting point for most projects is to generate an application skeleton. This is done
using the following:
sencha -sdk /path/to/sdk generate app MyApp /path/to/MyApp
Ext JS and Sencha Touch applications are structured differently from each other. Further,
particularly with Ext JS, applications can be quite large and may contain multiple pages.
To get started building applications using Sencha Cmd, consult the
Using Sencha Cmd guide.
There are many other details related to using Sencha Cmd that can be helpful. The help
command is a great reference, but if you want to walk through all the highlights, consult
Advanced Sencha Cmd.
Here are some tips for solving common problems encountered when using Sencha Cmd.
If running sencha
results in the error message sencha: command not found
on OSX/Linux
or 'sencha' is not recognized as an internal or external command, operable program or batch file
on Windows, follow these steps:
C:\Users\Me\bin\Sencha\Cmd\{version}
~/bin/Sencha/Cmd/{version}
~/bin/Sencha/Cmd/{version}
echo %PATH%
on Windows or echo $PATH
on Mac or Linux.SENCHA_CMD_{version}
is set, with the value beingSENCHA_CMD_3_1_0
must be set. If the output isecho %SENCHA_CMD_3_1_0%
echo $SENCHA_CMD_3_1_0
If you see an error related to not recognizing or finding "ruby"
this is likely because
Ruby is not installed or is not in your PATH. See the previous System Requirements section.
A common mistake is to perform a command that requires the current directory to be either
an extracted SDK directory or an application directory, but such a directory has not been
set. If this requirement is not met, Sencha Cmd displays an error and exits.
Note that a valid application directory is one that was generated by Sencha Cmd.
The sencha app build
command works by reading your index.html
and scanning for
required classes. If your application does not properly declare the classes it requires,
the build usually completes but will not contain all the classes needed by your application.
To ensure that you have all required classes specified, always develop with the debugger
console enabled ("Developer Tools" in IE/Chrome, FireBug in FireFox and Web Inspector in
Safari) and resolve all warnings and error messages as they appear.
Whenever you see a warning like this:
[Ext.Loader] Synchronously loading 'Ext.foo.Bar'; consider adding 'Ext.foo.Bar' explicitly as a require of the corresponding class
Immediately add 'Ext.foo.Bar' inside the requires
array property of the class from
which the dependency originates. If it is a application-wide dependency, add it to therequires
array property inside Ext.application(...)
statement.