Skip to content

Commit a3a5704

Browse files
committed
first commit
1 parent aedfce0 commit a3a5704

File tree

260 files changed

+62531
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+62531
-0
lines changed

DYRM - Redux.url

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://didyoureadme.azurewebsites.net/UserUrls/TagUrls?UserUrlTagId=8c5e5d70-9bf0-4830-aafb-afd6b9b1aa69

Read Me · Redux.url

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://redux.js.org/

apps/SoundCloudClient/.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["env", "react", "stage-2"]
3+
}

apps/SoundCloudClient/.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env
59+
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Run ${file}",
11+
"program": "${file}"
12+
},
13+
{
14+
"name": "Attach",
15+
"type": "chrome",
16+
"request": "attach",
17+
"port": 9222,
18+
"webRoot": "${workspaceFolder}"
19+
}
20+
]
21+
}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "npm start",
8+
"type": "npm",
9+
"script": "start",
10+
"problemMatcher": []
11+
},
12+
{
13+
"type": "npm",
14+
"script": "test",
15+
"problemMatcher": []
16+
}
17+
]
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://redux.js.org/introduction/learning-resources

apps/SoundCloudClient/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//=============================================================================
2+
console.log("ggg:", "qqq");
3+
//=============================================================================
4+
https://www.robinwieruch.de/the-soundcloud-client-in-react-redux/
5+
//=============================================================================
6+
http://localhost:8080/
7+
D:\Git\Ggg\Ggg.Redux\apps\SoundCloudClient\src\index.js
8+
D:\Git\Ggg\Ggg.Redux\apps\SoundCloudClient\commandLines\commandLines.js
9+
//=============================================================================
10+
https://github.com/reyou/minimal-react-webpack-babel-setup
11+
https://github.com/reyou/favesound-redux
12+
D:\Git\Ggg\Ggg.Redux\apps\SoundCloudClient\README.md
13+
D:\Git\Ggg\Ggg.Redux\apps3rdParty\favesound-redux-master
14+
//=============================================================================
15+
https://www.robinwieruch.de/minimal-react-webpack-babel-setup/
16+
The whole served SPA contains only of two files: a .html and a .js file. While
17+
the .js file will be generated automatically from all of your JavaScript source files
18+
(via Webpack) later, you can already create the .html file manually as an entry
19+
point for your application.
20+
//=============================================================================
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://www.robinwieruch.de/the-soundcloud-client-in-react-redux/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[InternetShortcut]
2+
URL=https://developers.soundcloud.com/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// D:\Git\Ggg\Ggg.Redux\apps\SoundCloudClient\README.md
2+
// https://www.robinwieruch.de/minimal-react-webpack-babel-setup/
3+
// D:\Git\Ggg\Ggg.Redux\apps\SoundCloudClient\package.json
4+
// https://github.com/Microsoft/vscode-chrome-debug
5+
// "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222
6+
var npm = {
7+
install: "npm install webpack webpack-dev-server webpack-cli --save-dev",
8+
babel: "npm install babel-core babel-loader babel-preset-env --save-dev",
9+
"experimental features in ES6": "npm install babel-preset-stage-2 --save-dev",
10+
".jsx files to .js": "npm install babel-preset-react --save-dev",
11+
react: "npm install react react-dom --save",
12+
"react-hot-loader": "npm install react-hot-loader --save-dev",
13+
"testing tools": "npm install mocha chai jsdom --save-dev",
14+
enzyme: "npm install react-addons-test-utils enzyme --save-dev",
15+
"enzyme-adapter": "npm install enzyme-adapter-react-16 --save-dev",
16+
redux: "npm install redux --save",
17+
"redux-logger": "npm install redux-logger --save",
18+
"react-redux": "npm install react-redux --save",
19+
// http://localhost:8080/
20+
start: "npm start",
21+
test: "npm test"
22+
};

apps/SoundCloudClient/dist/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//=============================================================================
2+
https://www.robinwieruch.de/minimal-react-webpack-babel-setup/
3+
As a side note: The distribution folder will be everything you need to publish
4+
your web app to a hosting server. It will only need the HTML and JS file to serve
5+
your app.
6+
//=============================================================================

apps/SoundCloudClient/dist/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>The Minimal React Webpack Babel Setup</title>
6+
</head>
7+
8+
<body>
9+
<div id="app"></div>
10+
<script src="/bundle.js"></script>
11+
</body>
12+
13+
</html>

0 commit comments

Comments
 (0)