Setup with StealJS page
Learn to set up a basic CanJS application using StealJS as the module loader.
The problem
- Setup steal to load a basic CanJS application. A basic CanJS application has:
- In addition, this application should load the can-todomvc-test module version 5.0 and
pass it the custom element’s
ViewModel
instance. You will need to declare the version explicitly as different versions of this guide depend on different versions of this package.
What you need to know
To create a new project with StealJS, run:
To host static files, install
http-server
and run it like:If you load StealJS plugins, add them to your package.json configuration like:
Define a custom element with Component:
With CanJS configured as a steal plugin, you can load stache views like:
Note that
can
is the name of the StealJS plugin and needs to be configured as such.Add the custom element to your HTML page to see it in action:
Use the following HTML that a designer might have provided:
Use can-todomvc-test to load the application’s styles and run its tests:
The solution
Click to see the solution
Create a folder:
Host it:
Create a new project:
Install steal
, steal-tools
, and CanJS’s core modules:
Add steal.plugins to package.json:
Create the starting HTML page:
Create the application template:
Install the test harness:
Create the main app