![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.
super-react
Advanced tools
Opinionated Command Line Tool for Scaffolding out Nested React Components Into Files
#Super React
Opinionated Command Line Tool for Scaffolding out Nested React Components Into Files
##Install
npm install -g super-react
##Usage
super-react "[string]" [--file=<components scaffold>.json] [--output=<path | defaults "./components">]
##Scaffold Components From Emmet Syntax
###Basic Example
super-react "App>Description+ListContainer>List"
Results in a folder ./components
and has:
.
..
App.js
Description.js
List.js
ListContainer.js
App.js
has the following contents:
var React = require('react');
var Description = require('./Description.js');
var ListContainer = require('./ListContainer.js');
var App = React.createClass({
mixins : [],
propTypes: {
},
render: function() {
var styles = {};
return (
<div>
<Description />
<ListContainer />
</div>
);
}
});
module.exports = App;
###Complex Example
super-react "App>Description+ListContainer>List" --output=./my_components
Creates components in ./my_components
##Scaffold Components From JSON File
Say we have a components.json
file with the following contents:
{
"App": {
"ListContainer": {
"AddItem":{},
"List":{}
}
}
}
Lets run super-react with the file flag:
super-react --file=components.json --output=./my_components
We get a folder ./my_components
with the following:
.
..
AddItem.js
App.js
List.js
ListContainer.js
App has the contents you would expect from the previous section.
##Contribute?
I <3 Pull Requests, suggestions, and Issue reports.
FAQs
Opinionated Command Line Tool for Scaffolding out Nested React Components Into Files
The npm package super-react receives a total of 4 weekly downloads. As such, super-react popularity was classified as not popular.
We found that super-react 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.