This project is a fork of Crana
π‘ To get up and running with an application with a node.js backend and a React frontend, just execute:
yarn global add crassa
crassa init <projectName> [projectFolder]
...and you are ready to go!
This will equip you with all important tools you're going to need to develop powerful applications, for example Live reaload for the server and the frontend out of the box. Webpack, Babel, ESLint, StyleLint, Nodemon etc. etc., all preconfigured out of the box, so that you can focus on the important stuff!
π» Now start developing!
yarn dev
This will fire up the backend and the frontend development server. Just edit files under src and see what happens!
- Analize and crate paramater in crassa to generate templates
- Create server templates
- Migrate to plop library
- Generate advance template
- Create folder function with validation
- Create file function
- Create reduce index file template
- Concate new reducer to index.js reducers file from project
- Concate new takes to rootSaga
- Create sagas file template
- Create takes file template
- Generate basic template
- Update documentation
π Show all crassa's commands.
crassa --help
β Create a new crassa project.
crassa init <projectName> [projectFolderName]
π« Concurrently starts the frontend and the backend in development mode.
yarn dev
π See how many LOC you've already written.
yarn count
π Executes eslint and styleling in autofix mode.
yarn lint
π Starts the project for production with server side.
yarn start
π« Starts the project for production with server side with nodemon.
yarn start:dev
π Creates a production build for the frontend application.
yarn build
The interesting files for you are all located in the src folder. The src folder has three subfolders:
- src
- server
As you can imagine, the src folder contains all files for the React frontend application and the server folder contains all files for the node.js backend.
You'll be able create custom template from github to generate your initial project: Github repository structure like:
.
βββ template
βββ nodemon.json
βββ public
βΒ Β βββ favicon.ico
βΒ Β βββ index.html
βΒ Β βββ manifest.json
βββ server
βΒ Β βββ index.js
βΒ Β βββ v1
βΒ Β βββ counter
βΒ Β βΒ Β βββ index.js
βΒ Β βββ index.js
βββ src
βββ App.js
βββ App.test.js
βββ components
βΒ Β βββ Common
βΒ Β βββ Loading.js
βββ containers
βΒ Β βββ Dashboard.js
βΒ Β βββ DevTools.js
βΒ Β βββ Root.dev.js
βΒ Β βββ Root.js
βΒ Β βββ Root.prod.js
βββ index.js
βββ lib
βΒ Β βββ Request.js
βββ reducers
βΒ Β βββ base.js
βΒ Β βββ counter.js
βΒ Β βββ index.js
βββ registerServiceWorker.js
βββ routes
βΒ Β βββ index.js
βββ sagas
βΒ Β βββ counter.js
βΒ Β βββ index.js
βββ setupProxy.js
βββ store
βββ configureStore.dev.js
βββ configureStore.js
βββ configureStore.prod.js
βββ .gitignore
βββ .npmrc
βββ package.json
Where package.json basically it must have name and displayName tag with {-- project-name --} and crassa with version tag {-- project-version --} like this:
{
"name": "{-- project-name --}",
...
"crassa": {
"displayName": "{-- project-name --}",
},
...
"dependencies": {
"crassa": "{-- project-version --}",
...
},
...
}
You can put your git when crassa cli ask you to choose between next or custom template, the url mus to have this structure:
- ghondar/counter-with-redux-ducks-and-sagas-template
- grovertb/crasa-template-antd
- grovertb/crasa-template-material-ui
You can configure the project environment variables
> REACT_APP_PORT_SERVER=5000 // Port of server this is optional
> REACT_APP_REST_API_LOCATION=http://localhost:5000 // Domain the server application
> REACT_APP_API_VERSION=v1 // Api version for default is v1
> BODY_PARSER_LIMIT=10mb // Configure size limit body-parser
Here (server folder) you can extend universal middleware creating preLoadState.js file to dispatch action from server to load initial state into redux store.
Example: (/server/preLoadState.js)
import counterDuck from 'reducers/counter'
export default function(req, res, next) {
// Get store from locals
const { store } = res.locals
// Show local resources
console.log(res.locals)
// Dispatch a action to change initial state
store.dispatch(counterDuck.creators.addCount())
// Resave new store
res.locals.store = store
// Pass middlerware
next()
}
Here (server folder) you can get the html created in universal.js to modify the initial load of DOM or wrapping your app src react project.
Example: (/server/universal.js)
import { renderToString } from 'react-dom/server'
export const setRenderUniversal = (locals, app, extractor) => {
const { htmlData } = locals // htmlData, store, history
// store => access to store ( redux )
// extractor.getStyleTags() => access to styles of the app
const renderString = renderToString(app) // wrapping optional
const style = `
<style id='css-server-side' type="text/css">
html { margin:0px; padding:0px }
</style>
`
return {
prevHtml: html.replace('<head>', `<head>${style}`),
renderString // optional
}
}
We handle initial configuration here adding babel plugins (transform-imports, loadable-components and transform-react-remove-prop-types) and webpack alias (basic alias from package.json) but you can extend this initial configuration adding to your root project config-overrides.js file.
Example: (/configExpress.js)
import express from 'express'
import session from 'express-session'
import { resolve } from 'path'
export default function(app) {
app.use(
session({
secret : 'Cr4ss4',
resave : true,
saveUninitialized: true
})
)
app.use('/src', express.static(resolve(__dirname, './static')))
return app
}
With configExpress.js you can add configurations to express, like statics, uses or add web sockets too.
Example: (/config-overrides.js)
const { override, addWebpackAlias, addBundleVisualizer } = require('customize-cra')
module.exports = override(
process.env.BUNDLE_VISUALIZE == 1 && addBundleVisualizer()
)
As soon as you bootstrapped a new project, you have an application running with:
- Node.js with Express backend.
- React for frontend with Create React App v2, Redux, Redux Saga and Extensible-Duck.
- React-App-Rewired with Customize-cra to provide a set of utilities to customize the Create React App v2.
Under the hood it uses Webpack, Babel, ESLint with a few other plugins enabling a powerful development workflow.
If you're using Windows Linux Subsystem, eslint will not immediatly work. You need to edit the path under .vscode/settings.json
.
Replace C:/mnt/c
with C:
and it should work.
Have a look at CONTRIBUTING.md
Have a look at CODE_OF_CONDUCT.md