New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

super-react

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

super-react

Opinionated Command Line Tool for Scaffolding out Nested React Components Into Files

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

#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

Package last updated on 10 Mar 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc