Express Command Line

March 6, 2016 ยท View on GitHub

Note: Express Command Line tool is not yet officially supported on Linux. This tutorial works on OS X only.

Using Express is rather easy. To create a project you just need to type:

swift-express init YourProject

ant it will create you the whole directory structure along with xCode project.

No you need to fetch and build the dependencies:

cd YourProject
swift-express bootstrap

Build the project:

swift-express build

You can run your project by typing following test while in the project folder:

swift-express run

Full documentation of Express Command Line can be found here crossroadlabs/ExpressCommandLine.

Next tutorial: Building and running