Skip to content

mizchi/next-editor

Repository files navigation

Next Editor

Become a patreon / BACKERS

CircleCI

Coverage Status

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.

How to develop

  • yarn watch: start dev server(localhost:8099)
  • yarn test: run jest and typescript checking

no service-worker in development.

How to create your own next-editor

Deploy your own apllication

Register https://www.netlify.com

  • yarn deploy: deploy to netlify
  • (Complete netlify authentication flow)

or

  • yarn build:prod
  • Deploy public directory to your host.

Optional: CORS-PROXY

Register https://now.sh to deploy cors-buster You need proxy to push GitHub

Optional: Custom entry

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.

How to contribute

  • Fork this repository on GitHub
  • Write your code to modify
  • Write test under __tests__/*.ts
  • Pass yarn test
  • Create Pull-Request to this repository

See what @mizchi plan on TODO.md

PR is welcome!


LICENSE

MIT