next editor
1.0.0

Become a patreon / BACKERS
Standalone PWA Editor with Git (for Chromebook)
Play here nedi.app
Unstable: Data may be wiped by update
I am checking only Chrome and Chrome Canary.
yarn watch: start dev server(localhost:8099)yarn test: run jest and typescript checkingno service-worker in development.
Register https://www.netlify.com
yarn deploy: deploy to netlifyor
yarn build:prodpublic directory to your host.Register https://now.sh to deploy cors-buster You need proxy to push GitHub
npm i -g now-clinow wmhilton/cors-buster (using 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()This feature is for private custom build to release next-editor.app.
__tests__/*.tsyarn testSee what @mizchi plan on TODO.md
PR is welcome!
MIT