npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

crassa

v1.3.5

Published

A CLI tool to create React + Server Side with one command

Downloads

221

Readme

:sparkles: Create React App Server Side Application

:battery: A CLI tool to create React + Server Side with one command

This project is a fork of Crana

:bulb: 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!

:computer: 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!

:warning: Crassa is in early stage of development and may not meet all your requirements. That's why contributions of any kind are highly appreciated, as the best tools are built by communities!

RoadMap

  • [x] Analize and crate paramater in crassa to generate templates
  • [ ] Create server templates
  • [x] Migrate to plop library
  • [x] Generate advance template
    • [x] Create folder function with validation
    • [x] Create file function
    • [x] Create reduce index file template
    • [x] Concate new reducer to index.js reducers file from project
    • [x] Concate new takes to rootSaga
    • [x] Create sagas file template
    • [x] Create takes file template
  • [ ] Generate basic template
  • [ ] Update documentation

Usage

:sos: Show all crassa's commands.

crassa --help

:star: Create a new crassa project.

crassa init <projectName> [projectFolderName]

:dizzy: Concurrently starts the frontend and the backend in development mode.

yarn dev

:books: See how many LOC you've already written.

yarn count

:mag: Executes eslint and styleling in autofix mode.

yarn lint

:car: Starts the project for production with server side.

yarn start

:dizzy: Starts the project for production with server side with nodemon.

yarn start:dev

:blue_car: Creates a production build for the frontend application.

yarn build

Project structure

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.

Custom Template

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

Environments

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

Extensions

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()
)

Technologies

As soon as you bootstrapped a new project, you have an application running with:

Under the hood it uses Webpack, Babel, ESLint with a few other plugins enabling a powerful development workflow.

Known constraints/issues

Windows Linux Subsystem

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.

Contributing

Have a look at CONTRIBUTING.md

Code of conduct

Have a look at CODE_OF_CONDUCT.md