react-project icon indicating copy to clipboard operation
react-project copied to clipboard

State of the art web development with React.js.

Results 18 react-project issues
Sort by recently updated
recently updated
newest added

Added a `helperActions` section to handle flags like `--version` and `--help`.

Could you specify the license which applies to this repo? It may be ISC, as package.json has set to it, however LICENSE file or a mention in README would help...

After https://github.com/ryanflorence/react-project/pull/31, the args for https://github.com/ryanflorence/react-project/blob/master/create-react-project/blueprint/modules/api/hello.js#L1 need to be updated ``` javascript // now export default function (req, res, { params, location, route }) { ... } // correct export...

In my projects, I usually like to keep build tools in `devDependencies`, separate from code that's needed in the app itself (_technically_ dependencies that are only used on the client...

``` javascript This would allow some optional server customization, but still keep everything 'battery-pack included' // PublicServerAPI.js export function createServer({ renderDocument, renderApp, routes, devMiddlewares, prodMiddlewares }) { const server =...

Hiya! I'm one of the contributors over at https://github.com/erikras/react-redux-universal-hot-example/ That project has been difficult to maintain given its large scope and fast ecosystem. I'd love to help out and potentially...

Makes it easier to add express middleware. Solve #10

[shelljs' `cp()` is checking for a source path ending with `'/'`](https://github.com/shelljs/shelljs/blob/04b0472201ac3c48aea189c08d12eea0e94e7ecc/src/cp.js#L146) before adding a wildcard to it, but as the blueprint directory is built with `path.join()`, it will be in...