├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── example ├── .babelrc ├── README.md ├── djangosite │ ├── __init__.py │ ├── settings.py │ └── urls.py ├── example_app │ ├── __init__.py │ ├── static │ │ ├── jsx │ │ │ ├── components │ │ │ │ ├── Comment.jsx │ │ │ │ ├── CommentBox.jsx │ │ │ │ ├── CommentForm.jsx │ │ │ │ └── CommentList.jsx │ │ │ └── main.jsx │ │ ├── main.css │ │ ├── vendor │ │ │ └── bootstrap │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ └── webpack.config.js │ ├── templates │ │ └── example_app │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── manage.py ├── package-lock.json ├── package.json └── requirements.txt ├── package.json ├── react_render ├── __init__.py ├── core.py ├── django │ ├── __init__.py │ ├── models.py │ └── render.py ├── exceptions.py └── render.py ├── render.js ├── runtests.py ├── setup.cfg ├── setup.py └── tests ├── .babelrc ├── __init__.py ├── components ├── ES6Test.jsx ├── ErrorThrowingComponent.jsx ├── HelloWorld.jsx ├── HelloWorldPlain.js ├── HelloWorldWrapper.jsx └── PerfTestComponent.jsx ├── package-lock.json ├── package.json ├── settings.py ├── test_app ├── __init__.py ├── models.py └── static │ └── test_app │ └── StaticFileFinderComponent.jsx ├── test_functionality.py ├── test_performance.py └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/README.md -------------------------------------------------------------------------------- /example/djangosite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/djangosite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/djangosite/settings.py -------------------------------------------------------------------------------- /example/djangosite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/djangosite/urls.py -------------------------------------------------------------------------------- /example/example_app/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'markfinger' 2 | -------------------------------------------------------------------------------- /example/example_app/static/jsx/components/Comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/jsx/components/Comment.jsx -------------------------------------------------------------------------------- /example/example_app/static/jsx/components/CommentBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/jsx/components/CommentBox.jsx -------------------------------------------------------------------------------- /example/example_app/static/jsx/components/CommentForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/jsx/components/CommentForm.jsx -------------------------------------------------------------------------------- /example/example_app/static/jsx/components/CommentList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/jsx/components/CommentList.jsx -------------------------------------------------------------------------------- /example/example_app/static/jsx/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/jsx/main.jsx -------------------------------------------------------------------------------- /example/example_app/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/main.css -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /example/example_app/static/vendor/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/vendor/bootstrap/js/npm.js -------------------------------------------------------------------------------- /example/example_app/static/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/static/webpack.config.js -------------------------------------------------------------------------------- /example/example_app/templates/example_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/templates/example_app/index.html -------------------------------------------------------------------------------- /example/example_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/urls.py -------------------------------------------------------------------------------- /example/example_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/example_app/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/package.json -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/package.json -------------------------------------------------------------------------------- /react_render/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/__init__.py -------------------------------------------------------------------------------- /react_render/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/core.py -------------------------------------------------------------------------------- /react_render/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/django/__init__.py -------------------------------------------------------------------------------- /react_render/django/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react_render/django/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/django/render.py -------------------------------------------------------------------------------- /react_render/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/exceptions.py -------------------------------------------------------------------------------- /react_render/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/react_render/render.py -------------------------------------------------------------------------------- /render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/render.js -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/.babelrc -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/components/ES6Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/ES6Test.jsx -------------------------------------------------------------------------------- /tests/components/ErrorThrowingComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/ErrorThrowingComponent.jsx -------------------------------------------------------------------------------- /tests/components/HelloWorld.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/HelloWorld.jsx -------------------------------------------------------------------------------- /tests/components/HelloWorldPlain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/HelloWorldPlain.js -------------------------------------------------------------------------------- /tests/components/HelloWorldWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/HelloWorldWrapper.jsx -------------------------------------------------------------------------------- /tests/components/PerfTestComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/components/PerfTestComponent.jsx -------------------------------------------------------------------------------- /tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/package-lock.json -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/static/test_app/StaticFileFinderComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/test_app/static/test_app/StaticFileFinderComponent.jsx -------------------------------------------------------------------------------- /tests/test_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/test_functionality.py -------------------------------------------------------------------------------- /tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/test_performance.py -------------------------------------------------------------------------------- /tests/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mic159/react-render/HEAD/tests/webpack.config.js --------------------------------------------------------------------------------