![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
NeoWidget uses JSX to define DOM Trees, so you will need jsx-transform-loader for webpack, jsxtransformify for Browserify or something based on jsx-transform to preprocess JSX.
npm install -save neowidget
webpack.config.js
{..., loader: 'jsx-transform-loader'}
npm install -save jsxtransformify
browserify -t jsxtransformify file.js -o output.js
You need to specify the @docblock in the files where you use JSX: /** @jsx NeoWidget.h */
/** @jsx NeoWidget.h */
var Heading = Class('Heading').inherits(NeoWidget)({
data : {
title : 'Heading Title'
}
template : function() {
return <div>
<h2>{this.data.title}</h2>
</div>
}
});
Class('Button').inherits(NeoWidget)({
prototype : {
data : {
title : 'Click Me!',
count : 0
},
template : function() {
return <div>
{new <Heading />.virtualNode}
<button onclick={this.clickHandler.bind(this)}>{this.data.title}</button>
<p>{'Clicks: ' + this.data.count}</p>
</div>
},
clickHandler : function() {
this.data.count++
this.update(this.data);
}
}
});
var widget = new Button()
widget.render(document.body);
FAQs
Virtual DOM based Widget for Neon.js
The npm package neowidget receives a total of 3 weekly downloads. As such, neowidget popularity was classified as not popular.
We found that neowidget demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.