code-vagabond
11/14/2016 - 3:00 PM

db-challenge

db-challenge

var webpack = require('webpack');
var path = require('path');

var BUILD_DIR = path.resolve(__dirname, 'src/client/public');
var APP_DIR = path.resolve(__dirname, 'src/client/app');

var config = {
  entry: APP_DIR + '/index.jsx',
  output: {
    path: BUILD_DIR,
    filename: 'bundle.js'
  }
};

module.exports = config;
https://speakerdeck.com/hswolff/react-native-and-d3js
https://github.com/caesar0301/awesome-public-datasets
http://blog.cloudera.com/blog/2015/08/using-apache-spark-for-massively-parallel-nlp-at-tripadvisor/
https://www.codementor.io/tamizhvendan/tutorials/beginner-guide-setup-reactjs-environment-npm-babel-6-webpack-du107r9zr
npm i webpack -S
create a file named webpack.config.js

in Windows CMD testrun with:
.\node_modules\.bin\webpack -d


In case babel core is missing, install it as devDependencies inside packages.json (http://stackoverflow.com/questions/35215461/error-in-cannot-find-module-babel-core-using-react-js-webpack-and-express-s):
npm install babel-core babel-loader --save-dev

Install react-bootstrap
npm install react-bootstrap --save

In case it doesn't work you can fresh install node_modules by deleting the whole folder then use 'npm install' to reinstall