Quick start
Stix CLI
The quickest way to get started is by using stix-cli to set up a new project. Creating a new application can be done like so:
- Install stix cli:
yarn global add stix-cli - Create a new project:
stix init project-name - Party.
Running
Now your application is ready, navigate into it. (cd $_ if you followed the steps above).
Run your newly created application server using: yarn dev and test it by visiting http://localhost:1991/.
If all went well you should be greeted with a kind JSON response with the traditional { "Hello": "world!" }.
- To also display debug output:
DEBUG=stix:* yarn dev - When you're ready to make a build for deployment run
yarn build.
What's next
The documentation has been written in an incremental manner and have been sorted as such. This means you can read the documentation top-down and learn more about what's possible.
...Or just jump around and click random links like I know you will, you rebel.
I like you. Happy coding!