isomorphic-lab icon indicating copy to clipboard operation
isomorphic-lab copied to clipboard

Isomorphic React experimentation

Results 6 isomorphic-lab issues
Sort by recently updated
recently updated
newest added

on `npm install` ``` npm ERR! node v4.1.1 npm ERR! npm v2.14.4 npm ERR! code EPEERINVALID npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements! npm...

you have in pkg.json script -> star like "start": "node lib/server" but lib/server not exists

Current package.json configuration triggers latest packages installation, which breaks the app on `npm install` stage already. ``` npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements!...

Hi, I got this fetchData method in my component: ``` fetchData(params, cb) { superagent .get(`${API_URL}/users/` + params.username) .accept('json') .set('Api', 'v1') .end(function(err, res) { cb(err, res && res.body); }) }, ```...

Hey, I'm trying to run your project (which looks awesome!) locally but neither npm install nor npm run bundle works for me? Thank you!