![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
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 "[emmet_string]" [--file=<components_scaffold>.json] [--output=<path>] [--es6] [--ext=<custom_extension>]
##Scaffold Components From Emmet Syntax
This tool uses Emmet style syntax for scaffolding out components in a nested fashion. In this early version of this module, all components are dumped into a single folder but, the React component calls the nested children we specify.
###Basic Example
super-react "App>Description+ListContainer>List"
The >
denotes a parent component and +
denotes a sibling component.
The command 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 --ext=jsx --es6
Creates components in ./my_components
with files with the extension jsx (i.e. App.jsx
) and a class with ES6 style JS in the following:
import React from 'react';
import Description from './Description.jsx'
import ListContainer from './ListContainer.jsx'
let App = React.createClass({
mixins : [],
propTypes: {
},
render() {
var styles = {};
return (
<div>
<Description />
<ListContainer />
</div>
);
}
});
export default App;
##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.
##Changelog
##Roadmap
##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 1 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.