next editor
1.0.0

成为Patreon /支持者
与Git的独立PWA编辑器(用于Chromebook)
在这里玩Nedi.App
不稳定:数据可以通过更新擦除
我只检查Chrome和Chrome Canary。
yarn watch :Start Dev Server(Localhost:8099)yarn test :开玩笑和打字稿检查没有开发的服务工作者。
注册https://www.netlify.com
yarn deploy :部署到NetLify或者
yarn build:prodpublic目录部署到您的主机。注册https://now.sh到达部署cors-buster,您需要代理才能推动github
npm i -g now-clinow wmhilton/cors-buster (使用https://github.com/wmhilton/cors-buster)corsProxy: "<your-proxy>" mkdir src-custom
touch src-custom/index.js
SRC="src-custom" yarn build:prod
// src-custom/index.js
import { setupInitialRepository } from "../src/domain/git/commands/setupInitialRepository"
import { run } from "../src/init"
// Write your own bootstrap
async function main ( ) {
try {
await setupInitialRepository ( "/playground" )
} catch ( e ) {
// Skip
console . error ( "init error" , e )
}
run ( )
}
main ( )此功能适用于私有自定义构建,以发布Next-editor.app。
__tests__/*.ts下写测试yarn test查看todo.md上的@mizchi计划
PR欢迎!
麻省理工学院