react-pseudopia .Parse pseudo React into a scaffolded app
Parse pseudo React into a scaffolded app.
Pseudo code:
<Layout>
<Header />
<Wrapper>
<MainContent
title="Pseudopia"
subTitle="A delightful React app generator"
/>
</Wrapper>
<Footer />
</Layout>
Generates:
./output/
├── App.tsx
└── components
├── Footer.tsx
├── Header.tsx
├── Layout.tsx
├── MainContent.tsx
├── Wrapper.tsx
└── __tests__
├── Footer.test.tsx
├── Header.test.tsx
├── Layout.test.tsx
├── MainContent.test.tsx
└── Wrapper.test.tsx
npm i
pseudoCode.js
file with your app ideanpm start
You should now see an output
directory with a scaffolded app.
Name | Options | Default |
---|---|---|
--baseComponentName |
string |
App |
--componentDirName |
string |
components |
--extension |
js , jsx or tsx |
tsx |
Name | Options | Default |
---|---|---|
--outputPath |
string |
./output |
--pseudoCodePath |
string |
./pseudoCode.js |
--unitTestOutputPath |
string |
./output/components/__tests__ |
Name | Options | Default |
---|---|---|
--appTemplatePath |
string |
./templates/app.hbs |
--componentTemplatePath |
string |
./templates/component.hbs |
--unitTestTemplatePath |
string |
./templates/unit-test.hbs |
Example
$ npm start -- --baseComponentName="Wrapper" --pseudoCodePath="./myPseudo.js"
Enjoy.
Author: sethdavis512
Source Code: https://github.com/sethdavis512/react-pseudopia
Article covers: How native is react native?, React Native vs (Ionic, Cordova), Similarities and difference between React Native and Native App Development.
Increase Performance of React Applications Via Array JavaScript Methods. We will create a simple event management application in the react to add, update, and delete an event.
I have been using React JS in my projects for quite some time now and am used to managing routing in my app using the react-router package. I have always been keen on having as little dependencies in my apps as possible, so, I always felt perturbed by the use of this particular package in simpler apps which did not have complex routes.
In this post, I will share my own point of view about React Hooks, and as the title of this post implies, I am not a big fan.
This article will walk you through the concepts you would need to know to step into the world of widely used ReactJS.