create-nteract-app
Advanced tools
Comparing version 0.3.9 to 0.4.0
{ | ||
"name": "create-nteract-app", | ||
"version": "0.3.9", | ||
"version": "0.4.0", | ||
"description": "create an nteractive computing app!", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/alexandercbooth/create-nteract-app.git" | ||
"url": "https://github.com/nteract/create-nteract-app.git" | ||
}, | ||
@@ -15,3 +15,3 @@ "scripts": { | ||
"license": "MIT", | ||
"homepage": "https://github.com/alexandercbooth/create-nteract-app", | ||
"homepage": "https://github.com/nteract/create-nteract-app", | ||
"bin": { | ||
@@ -18,0 +18,0 @@ "create-nteract-app": "./src/index.js" |
# create-nteract-app | ||
[![CircleCI](https://circleci.com/gh/nteract/create-nteract-app/tree/master.svg?style=svg)](https://circleci.com/gh/nteract/create-nteract-app/tree/master) | ||
## Installation | ||
Install `create-nteract-app` globally | ||
```bash | ||
npm i -g create-nteract-app | ||
``` | ||
## Usage | ||
Create an nteract app and run the development server. | ||
```bash | ||
@@ -15,4 +22,5 @@ create-nteract-app yourApp | ||
``` | ||
Now, navigate to [here](http://localhost:3000/) and you should see the following: | ||
![](Screenshot.png) | ||
![](Screenshot.png) |
@@ -1,2 +0,4 @@ | ||
const withMDX = require("@zeit/next-mdx")(); | ||
const withMDX = require("@zeit/next-mdx")({ | ||
extension: /\.mdx?$/ | ||
}); | ||
module.exports = withMDX({ | ||
@@ -7,3 +9,4 @@ exportPathMap: function() { | ||
}; | ||
} | ||
}, | ||
pageExtensions: ["md", "mdx"] | ||
}); |
@@ -28,2 +28,7 @@ import * as React from "react"; | ||
{/* | ||
* If you'd like to use R, try out this instead: | ||
* <Kernel repo="binder-examples/r" kernelName="ir"> | ||
*/} | ||
<Kernel repo="binder-examples/requirements" kernelName="python3"> | ||
@@ -30,0 +35,0 @@ <Kernel.Consumer> |
Sorry, the diff of this file is not supported yet
531
26
290751