オンラインエディタ自作メモ
エディタのベースはaceがある
ブラウザ上で使えるJavaScript製テキストエディタAce入門 - Qiita
pugはpug-runtimeがある
https://github.com/pugjs/pug/tree/master/packages/pug-runtime
scssはsass.jsで出来る
https://github.com/medialize/sass.js
npmがなぜか中々見つからなかった。mainがsyncの方になっているのであんまりrequireしてつかう感じではないのかも。。。
https://www.npmjs.com/package/sass.js
TypeScriptはこれ・・・?
https://github.com/niutech/typescript-compile
compile in browser ? · Issue #9490 · microsoft/TypeScript
なんかちゃんと用意されていないからbabelのほうでトランスパイルしているのかな・・・?
(オンライン系のTypeScriptで型エラーはされないから)
最近はbrowser-bundlerでコンパイルできそう
https://zenn.dev/steelydylan/articles/browser-bundler
#自作