Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waddlaw/zenkakuview
https://github.com/waddlaw/zenkakuview
elm elm-lang
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/waddlaw/zenkakuview
- Owner: waddlaw
- Created: 2018-04-15T23:37:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-20T07:38:19.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T23:42:23.201Z (3 months ago)
- Topics: elm, elm-lang
- Language: JavaScript
- Size: 244 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# 全角ビュー
[全角チェッカー](https://ao-system.net/doublecharcheck/) を参考に `Elm` で実装しました。
実際に [デモ](https://waddlaw.github.io/ZenkakuView/) から試すことができます。
## Elm のインストール
- [Elm Platform](http://elm-lang.org/install).
- [architectcodes/elm-live](https://github.com/architectcodes/elm-live)**Ubuntu** の場合は以下のコマンドでインストールできます。
```sh
$ sudo npm i -g elm elm-live --unsafe-perm=true --allow-root
```## Elm について
- [Elm tutorial](https://www.elm-tutorial.org/jp/)
- [Elm Syntax](http://elm-lang.org/docs/syntax)## このアプリケーションで利用しているもの
フレームワーク
- [BULMA](https://bulma.io/)
elm パッケージ
- [norpan/elm-file-reader](http://package.elm-lang.org/packages/norpan/elm-file-reader/2.0.1/)
- [danyx23/elm-mimetype](http://package.elm-lang.org/packages/danyx23/elm-mimetype/4.0.0/)
- [elm-lang/html](http://package.elm-lang.org/packages/elm-lang/html/2.0.0/)
- [elm-lang/core](http://package.elm-lang.org/packages/elm-lang/core/5.1.1/)## 開発方法
`elm-live` を使うと良い感じに開発が進みます。
```sh
$ elm-live Zenkaku.elm --output=zenkaku.js --open
```上記コマンドを実行すると、自動的にブラウザが開くのでデバッグできます。
### elm パッケージのインストール方法
```sh
$ elm package install --yes xxxx/yyyyy
```