JST is a simple javascript templating system inspired by Sprockets' homonimous templating system, but built for rails projects without Sprockets.
JST works on top of PrototypeJS's template system and HandleBars.
Add this line to your application's Gemfile:
gem 'jst', github: 'seekingalpha/jst'
And then execute:
$ bundle
Create a folder in your project and add PrototypeJS templates with the ".jst.pt" extension or Handlebars with the ".jst.hb". Let's suppose you have a "hi.jst.pt" file in "app/assets/javascripts/templates":
<h1>Hi, #{name}</h1>
In order to compile your templates, run:
JST::Aggregator.new('app/assets/javascripts/templates').save('public/javascripts/templates.js')
If you don't wanna pass the paths every time, you can configure it first (rule of thumb: add it to config/initializers/jst.rb):
JST.configure do |config|
config.templates_path = 'app/assets/javascripts/templates'
config.output = 'public/javascripts/templates.js'
end
Then you can just run:
JST.process!
Now, load templates.js in your view and then you can use the templates like this in your JS files:
Templates.hi({name: 'Emmanuel'})
This will output <h1>Hi, Emmanuel</h1>
, as expected. Notice the method "hi" is created automatically based on the name of the template file.
Enjoy!
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- Use guard to watch template folder and compile automatically when changed.
Allow handlebars templates.