├── .gitignore ├── README.md ├── global-react ├── README.md └── index.html ├── module-d3 ├── README.md └── index.html ├── systemjs-angular ├── README.md ├── config.js ├── index.html └── src │ ├── app.ts │ └── main.ts ├── systemjs-react ├── README.md ├── config.js ├── index.html ├── main.js └── process.js └── webpack-react ├── .babelrc ├── .gitignore ├── README.md ├── main.js ├── package.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/README.md -------------------------------------------------------------------------------- /global-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/global-react/README.md -------------------------------------------------------------------------------- /global-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/global-react/index.html -------------------------------------------------------------------------------- /module-d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/module-d3/README.md -------------------------------------------------------------------------------- /module-d3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/module-d3/index.html -------------------------------------------------------------------------------- /systemjs-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-angular/README.md -------------------------------------------------------------------------------- /systemjs-angular/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-angular/config.js -------------------------------------------------------------------------------- /systemjs-angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-angular/index.html -------------------------------------------------------------------------------- /systemjs-angular/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-angular/src/app.ts -------------------------------------------------------------------------------- /systemjs-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-angular/src/main.ts -------------------------------------------------------------------------------- /systemjs-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-react/README.md -------------------------------------------------------------------------------- /systemjs-react/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-react/config.js -------------------------------------------------------------------------------- /systemjs-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-react/index.html -------------------------------------------------------------------------------- /systemjs-react/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/systemjs-react/main.js -------------------------------------------------------------------------------- /systemjs-react/process.js: -------------------------------------------------------------------------------- 1 | exports.env = { 2 | NODE_ENV: 'development' 3 | } 4 | -------------------------------------------------------------------------------- /webpack-react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/.babelrc -------------------------------------------------------------------------------- /webpack-react/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /webpack-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/README.md -------------------------------------------------------------------------------- /webpack-react/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/main.js -------------------------------------------------------------------------------- /webpack-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/package.json -------------------------------------------------------------------------------- /webpack-react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/webpack.config.js -------------------------------------------------------------------------------- /webpack-react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjackson/unpkg-demos/HEAD/webpack-react/yarn.lock --------------------------------------------------------------------------------