All Projects → mizchi → Next Editor

mizchi / Next Editor

Standalone Git Editor on Browser

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Next Editor

Progressive Web Apps Book
All of the code for "Progressive Apps" - a book by Dean Hume
Stars: ✭ 270 (-6.25%)
Mutual labels:  pwa, service-worker
Deckdeckgo
The web open source editor for presentations
Stars: ✭ 1,117 (+287.85%)
Mutual labels:  editor, pwa
Hnpwa Vanilla
Hacker News PWA implemented using no framework just javascript
Stars: ✭ 245 (-14.93%)
Mutual labels:  pwa, service-worker
Ember Service Worker
A pluggable approach to Service Workers for Ember.js
Stars: ✭ 227 (-21.18%)
Mutual labels:  pwa, service-worker
Pwa Fundamentals
👨‍🏫 Mike & Steve's Progressive Web Fundamentals Course
Stars: ✭ 256 (-11.11%)
Mutual labels:  pwa, service-worker
Productivity Frontend
Productivity Application - Kanban Style Productivity Management Application with Customizable Boards, Lists and Cards to Make You More Productive.
Stars: ✭ 234 (-18.75%)
Mutual labels:  pwa, service-worker
Vue Prism Editor
A dead simple code editor with syntax highlighting and line numbers. 3kb/gz
Stars: ✭ 422 (+46.53%)
Mutual labels:  editor, pwa
Pwafire
Progressive Web Apps API of APIs
Stars: ✭ 137 (-52.43%)
Mutual labels:  pwa, service-worker
badaso
The API & platform builder, build your apps 10x faster even more, it's open source & 100% free !
Stars: ✭ 650 (+125.69%)
Mutual labels:  pwa, service-worker
jekyll-pwa-workbox
A Jekyll plugin using Workbox to make your PWA / Website available offline.
Stars: ✭ 22 (-92.36%)
Mutual labels:  pwa, service-worker
Pwatter
Angular Progressive Web App using Workbox
Stars: ✭ 167 (-42.01%)
Mutual labels:  pwa, service-worker
Slingcode
personal computing platform
Stars: ✭ 277 (-3.82%)
Mutual labels:  editor, pwa
Notes
Offline-first notepad PWA
Stars: ✭ 163 (-43.4%)
Mutual labels:  pwa, service-worker
Jfa Pwa Toolkit
⚡️ PWA Features to Any Website (very Fast & Easy)
Stars: ✭ 245 (-14.93%)
Mutual labels:  pwa, service-worker
Learning Pwa
📱some samples and blogs about how to start with your first PWA
Stars: ✭ 162 (-43.75%)
Mutual labels:  pwa, service-worker
Pixelcraft
A Pixel Art Editor
Stars: ✭ 413 (+43.4%)
Mutual labels:  editor, pwa
Pwa
Progressive Web Apps for Rails
Stars: ✭ 133 (-53.82%)
Mutual labels:  pwa, service-worker
Monitaure
🔔 A server uptime monitoring progressive web application - NO LONGER MAINTAINED
Stars: ✭ 135 (-53.12%)
Mutual labels:  pwa, service-worker
react-prpl-boilerplate
A simple boilerplate for learn PRPL pattern with React.
Stars: ✭ 23 (-92.01%)
Mutual labels:  pwa, service-worker
Twreporter React
twreporter site with nodejs
Stars: ✭ 263 (-8.68%)
Mutual labels:  pwa, service-worker

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].