ReactEdCoders / ReactEd

An extension to assist with development of react and redux applications.
https://marketplace.visualstudio.com/items?itemName=ReactEd.reacted
MIT License
46 stars 2 forks source link
props react reactjs redux snippets vscode-extension

ReactEd

Visual Studio Marketplace Visual Studio Marketplace Visual Studio Marketplace

An extension to assist with development of react and redux applications.

Features

Usages

Prop-Drilling

Usage

Snippets

ccon

ccon

cdmount

cdmount

cocomp

cocomp

cwmount

cwmount

impf

impf

ireact

ireact

ired

ired

reducer

reducer

rstore

rstore

scribe

scribe

tsps

tsp

Configuration

ReactEd requires a webpack generated bundle file to properly traverse your application. At this time we are unable to offer support for Create-React-App. Files need to be refreshed by closing and reopening the file to update the props information.

{
  module.exports = {
    entry: './src/index.js',
    output: {
      path: path.resolve(__dirname, 'dist/'),
      filename: 'bundle.js',
      publicPath: '/dist',
    },
    mode: 'none',
  }
}

Note: If using Webpack 4.0 or greater please change your mode to none as the default is Production which will minify the bundle and make our tool stop working.

Change Log

See Change Log here

Issues

Submit the issues if you find any bug or have any suggestion.

Contribution

Fork the repo and submit pull requests.