diff --git a/README.md b/README.md index cf227df..de8e189 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/). For a steady stream of TILs from a variety of rocketeers, checkout [til.hashrocket.com](https://til.hashrocket.com/). -_662 TILs and counting..._ +_663 TILs and counting..._ --- @@ -778,6 +778,7 @@ _662 TILs and counting..._ ## Workflow - [Convert An ePub Document To PDF On Mac](workflow/convert-an-epub-document-to-pdf-on-mac.md) +- [Import A Github Project Into CodeSandbox](workflow/import-a-github-project-into-codesandbox.md) - [Interactively Kill A Process With fkill](workflow/interactively-kill-a-process-with-fkill.md) - [Toggle Between Stories In Storybook](workflow/toggle-between-stories-in-storybook.md) diff --git a/workflow/import-a-github-project-into-codesandbox.md b/workflow/import-a-github-project-into-codesandbox.md new file mode 100644 index 0000000..f7d3f11 --- /dev/null +++ b/workflow/import-a-github-project-into-codesandbox.md @@ -0,0 +1,13 @@ +# Import A Github Project Into CodeSandbox + +A really fancy feature that [CodeSandbox](https://codesandbox.io/) offers is +the ability to import a Github project. If you go to the [Create +Sandbox](https://codesandbox.io/s/) page, you'll see some options including +_Import from Github_. From there, paste in the URL to a public github +repository and a matter of seconds your entire project will be synced into +a new CodeSandbox project. + +I recently did this with a [create-react-app +project](https://codesandbox.io/s/github/jbranchaud/redux-little-router-example) +and CodeSandbox even knew how to recognize that it was a CRA app so that it +could run and display it in the web view.