├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── bundle_method.png ├── bundle_method.svg ├── default_observable_export_method.png ├── default_observable_export_method.svg ├── joyplot.png ├── notebook_visualizer.png ├── notebook_visualizer.svg ├── request_observable_api_method.png ├── request_observable_api_method.svg ├── rewrite_from_scratch_method.png └── rewrite_from_scratch_method.svg ├── bundle ├── README.md └── joyplot │ ├── .gitignore │ ├── .nowignore │ ├── README.md │ ├── bin │ └── download-data.js │ ├── now.json │ ├── now.sh │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ ├── customFetch.js │ ├── customResolve.js │ ├── fetchAlias.json │ ├── index.html │ ├── main.js │ └── render.js ├── default_observable_export ├── README.md └── joyplot │ ├── @mbostock │ └── psr-b1919-21.js │ ├── README.md │ ├── index.html │ ├── inspector.css │ ├── package.json │ └── runtime.js ├── request_observable_api ├── README.md ├── breakout │ └── index.html ├── joyplot │ └── index.html └── tissot │ └── index.html └── rewrite_from_scratch ├── README.md └── joyplot ├── package-lock.json ├── package.json ├── public ├── index.html └── main.min.js ├── rollup.config.js └── src ├── main.1.js ├── main.2.js ├── main.3.js ├── main.4.js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/README.md -------------------------------------------------------------------------------- /assets/bundle_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/bundle_method.png -------------------------------------------------------------------------------- /assets/bundle_method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/bundle_method.svg -------------------------------------------------------------------------------- /assets/default_observable_export_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/default_observable_export_method.png -------------------------------------------------------------------------------- /assets/default_observable_export_method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/default_observable_export_method.svg -------------------------------------------------------------------------------- /assets/joyplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/joyplot.png -------------------------------------------------------------------------------- /assets/notebook_visualizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/notebook_visualizer.png -------------------------------------------------------------------------------- /assets/notebook_visualizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/notebook_visualizer.svg -------------------------------------------------------------------------------- /assets/request_observable_api_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/request_observable_api_method.png -------------------------------------------------------------------------------- /assets/request_observable_api_method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/request_observable_api_method.svg -------------------------------------------------------------------------------- /assets/rewrite_from_scratch_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/rewrite_from_scratch_method.png -------------------------------------------------------------------------------- /assets/rewrite_from_scratch_method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/assets/rewrite_from_scratch_method.svg -------------------------------------------------------------------------------- /bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/README.md -------------------------------------------------------------------------------- /bundle/joyplot/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /bundle/joyplot/.nowignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/.nowignore -------------------------------------------------------------------------------- /bundle/joyplot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/README.md -------------------------------------------------------------------------------- /bundle/joyplot/bin/download-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/bin/download-data.js -------------------------------------------------------------------------------- /bundle/joyplot/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/now.json -------------------------------------------------------------------------------- /bundle/joyplot/now.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/now.sh -------------------------------------------------------------------------------- /bundle/joyplot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/package-lock.json -------------------------------------------------------------------------------- /bundle/joyplot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/package.json -------------------------------------------------------------------------------- /bundle/joyplot/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/rollup.config.js -------------------------------------------------------------------------------- /bundle/joyplot/src/customFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/customFetch.js -------------------------------------------------------------------------------- /bundle/joyplot/src/customResolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/customResolve.js -------------------------------------------------------------------------------- /bundle/joyplot/src/fetchAlias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/fetchAlias.json -------------------------------------------------------------------------------- /bundle/joyplot/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/index.html -------------------------------------------------------------------------------- /bundle/joyplot/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/main.js -------------------------------------------------------------------------------- /bundle/joyplot/src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/bundle/joyplot/src/render.js -------------------------------------------------------------------------------- /default_observable_export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/README.md -------------------------------------------------------------------------------- /default_observable_export/joyplot/@mbostock/psr-b1919-21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/@mbostock/psr-b1919-21.js -------------------------------------------------------------------------------- /default_observable_export/joyplot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/README.md -------------------------------------------------------------------------------- /default_observable_export/joyplot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/index.html -------------------------------------------------------------------------------- /default_observable_export/joyplot/inspector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/inspector.css -------------------------------------------------------------------------------- /default_observable_export/joyplot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/package.json -------------------------------------------------------------------------------- /default_observable_export/joyplot/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/default_observable_export/joyplot/runtime.js -------------------------------------------------------------------------------- /request_observable_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/request_observable_api/README.md -------------------------------------------------------------------------------- /request_observable_api/breakout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/request_observable_api/breakout/index.html -------------------------------------------------------------------------------- /request_observable_api/joyplot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/request_observable_api/joyplot/index.html -------------------------------------------------------------------------------- /request_observable_api/tissot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/request_observable_api/tissot/index.html -------------------------------------------------------------------------------- /rewrite_from_scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/README.md -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/package-lock.json -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/package.json -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/public/index.html -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/public/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/public/main.min.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/rollup.config.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/src/main.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/src/main.1.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/src/main.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/src/main.2.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/src/main.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/src/main.3.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/src/main.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/src/main.4.js -------------------------------------------------------------------------------- /rewrite_from_scratch/joyplot/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severo/observable-to-standalone/HEAD/rewrite_from_scratch/joyplot/src/main.js --------------------------------------------------------------------------------