Skip to content

Commit 40987e6

Browse files
committed
initial commit, base setup
0 parents  commit 40987e6

7 files changed

+99
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules
2+
/dist
3+
/.idea
4+
/npm-debug.log

LICENSE.MD

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The MIT License (MIT)
2+
Copyright (c) 2016 Maximilian Schwarzmüller
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.MD

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# ReactJS Basics
2+
3+
This repository accompanies my ReactJS - Basics YouTube Series.
4+
5+
# Usage
6+
Switch to the branch you're interested in (branches = different stages in the series) and compare/ download the source code.

package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "reactjs-basics",
3+
"version": "1.0.0",
4+
"description": "Some basic ReactJS",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "npm run build",
8+
"build": "webpack -d && cp src/index.html dist/index.html && webpack-dev-server --content-base src/ --inline --hot --history-api-fallback",
9+
"build:prod": "webpack -p && cp src/index.html dist/index.html"
10+
},
11+
"keywords": [
12+
"reactjs"
13+
],
14+
"author": "Maximilian Schwarzmueller",
15+
"license": "MIT",
16+
"dependencies": {
17+
"react": "^15.2.1",
18+
"react-dom": "^15.2.1"
19+
},
20+
"devDependencies": {
21+
"babel-loader": "^6.2.4",
22+
"babel-preset-es2015": "^6.9.0",
23+
"babel-preset-react": "^6.11.1",
24+
"babel-preset-stage-2": "^6.11.0",
25+
"webpack": "^1.13.1",
26+
"webpack-dev-server": "^1.14.1"
27+
}
28+
}

src/app/index.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from "react";
2+
import {render} from "react-dom";
3+
class App extends React.Component {
4+
render() {
5+
return (
6+
<h1>Hello Redux World!</h1>
7+
);
8+
}
9+
}
10+
11+
render(<App />, window.document.getElementById('app'));

src/index.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>ReactJS Basics</title>
9+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
10+
</head>
11+
<body>
12+
<div id="app"></div>
13+
<script src="/app/bundle.js"></script>
14+
</body>
15+
</html>

webpack.config.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
var path = require("path");
2+
3+
var DIST_DIR = path.resolve(__dirname, "dist");
4+
var SRC_DIR = path.resolve(__dirname, "src");
5+
6+
var config = {
7+
entry: SRC_DIR + "/app/index.js",
8+
output: {
9+
path: DIST_DIR + "/app",
10+
filename: "bundle.js",
11+
publicPath: "/app/"
12+
},
13+
module: {
14+
loaders: [
15+
{
16+
test: /\.js?/,
17+
include: SRC_DIR,
18+
loader: "babel-loader",
19+
query: {
20+
presets: ["react", "es2015", "stage-2"]
21+
}
22+
}
23+
]
24+
}
25+
};
26+
27+
module.exports = config;

0 commit comments

Comments
 (0)