Follow Me:
Showing posts with label Nodejs. Show all posts
Showing posts with label Nodejs. Show all posts

Monday, 3 July 2017

ReactJS Simple Installation Setup Steps React is front end library developed by Facebook. It's used for handling view layer for web and mobile apps. ReactJS allows us to create reusable UI components.  React implements one way data flow which makes it easy to reason about your app. Flux is a pattern that helps keeping your data unidirectional. React is all about components. You need to think of everything as a component. This will help...

Sunday, 2 July 2017

ReactJS Webpack Module build failed: Error: Cannot find module Running the npm start in reactjs by using nodejs, its throwing error like "Module build failed: Error: Cannot find module". Module build failed: Error: Cannot find module 'locate-path'     at Function.Module._resolveFilename (module.js:469:15)     at Function.Module._load (module.js:417:25)     at Module.require (module.js:497:17)    ...

Monday, 6 February 2017

Npm node js can't find package.json The most important things in your package.json are the name and version fields. Those are actually required, and your package won't install without them. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version. npm --version npm install express npm init -y More reference: https://docs.npmjs.com/files...