Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Render | 1,718 | 423 | 200 | 3 months ago | 13 | June 22, 2022 | mit | Go | ||
Go package for easily rendering JSON, XML, binary data, and HTML templates responses. | ||||||||||
C Ray | 692 | 3 days ago | 17 | mit | C | |||||
c-ray is a small, simple path tracer written in C | ||||||||||
Typesystem | 492 | 30 | 19 | a year ago | 29 | December 15, 2021 | 28 | bsd-3-clause | Python | |
Data validation, serialization, deserialization & form rendering. 🔢 | ||||||||||
Phearjs | 331 | 1 | 6 years ago | 5 | October 16, 2015 | 4 | CoffeeScript | |||
PhearJS - render dynamic Javascript webpages to JSON with PhantomJS | ||||||||||
Renderer | 217 | 1 | 6 | 2 years ago | 1 | March 11, 2019 | mit | Go | ||
Simple, lightweight and faster response (JSON, JSONP, XML, YAML, HTML, File) rendering package for Go | ||||||||||
Rabl Rails | 200 | 146 | 1 | 2 years ago | 25 | March 25, 2021 | 6 | mit | Ruby | |
Rails 4.2 & 5 templating system with JSON, XML and Plist support. | ||||||||||
Ishow | 183 | 5 years ago | 1 | JavaScript | ||||||
A h5 page generator, generated by editing json, and then through the phone side of the page through a series of functions rendering | ||||||||||
Antd Schema Form | 163 | 2 months ago | 58 | December 03, 2022 | 9 | mit | TypeScript | |||
Based on Ant Design, interactive forms can be generated through JSON Schema configuration. - 基于Ant Design,可以通过JSON Schema配置生成可交互的表单。 | ||||||||||
Grender | 88 | 5 years ago | May 24, 2021 | 2 | mit | Go | ||||
Go package for easily rendering JSON/XML data and HTML templates | ||||||||||
Mson React | 80 | 1 | a year ago | 18 | October 10, 2021 | 15 | apache-2.0 | JavaScript | ||
React and Material-UI Rendering Layer for MSON |
Adds support for rendering Jbuilder templates using Tilt.
Add this line to your application's Gemfile:
gem 'tilt-jbuilder'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tilt-jbuilder
require 'tilt/jbuilder.rb'
template = Tilt::JbuilderTemplate.new("templates/awesomeness.json.jbuilder")
template.render
# With locals
template = Tilt::JbuilderTemplate.new { "json.author name" }
template.render(nil, :name => 'Anthony')
# With scope
template = Tilt::JbuilderTemplate.new { "json.author @name" }
scope = Object.new
scope.instance_variable_set :@name, 'Anthony'
template.render(scope)
# Block style
template = Tilt::JbuilderTemplate.new do |t|
lambda { |json| json.author 'Anthony'; json.target! }
end
template.render
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)tilt-jbuilder is maintained and funded by Sticksnleaves
Thanks to all of our contributors