Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Framework | Version | Minified Size (gzip) |
---|---|---|
Ember | 2.5.0 | 117.26kb |
Polymer + Web Components Polyfill Lite | 1.4.0 | 54.48kb |
Angular | 1.5.0 | 53.17kb |
React | 15.0.2 | 43.62kb |
Web Components Polyfill | 0.7.22 | 33.66kb |
Vue | 1.0.21 | 25.98kb |
Riot | 2.4.1 | 9.23kb |
Riot brings custom tags to all modern browsers. Think React + Polymer but with enjoyable syntax and a small learning curve.
<timer>
<p>Seconds Elapsed: { time }</p>
this.time = opts.start || 0
tick() {
this.update({ time: ++this.time })
}
var timer = setInterval(this.tick, 1000)
this.on('unmount', function() {
clearInterval(timer)
})
</timer>
riot.mount('timer', { start: 0 })
Custom tags lets you build complex views with HTML.
<timetable>
<timer start="0"></timer>
<timer start="10"></timer>
<timer start="20"></timer>
</timetable>
HTML syntax is the de facto language on the web and it's designed for building user interfaces. The syntax is explicit, nesting is inherent to the language and attributes offer a clean way to provide options for custom tags.
data-
attributes.class={ enabled: is_enabled, hidden: hasErrors() }
.render
, state
, constructor
or shouldComponentUpdate
Add #{ items.length + 1 }
or class="item { selected: flag }"
Riot is made with :heart: by many smart people from all over the world. Thanks to all the contributors
It's actively maintained by:
FAQs
Simple and elegant component-based UI library
The npm package riot receives a total of 4,851 weekly downloads. As such, riot popularity was classified as popular.
We found that riot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.