-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from entrylabs/feature/entryjs
entry-ml, entry-tool 추가내용 작성
- Loading branch information
Showing
2 changed files
with
198 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,37 +62,28 @@ updated: 2024-05-22 | |
|
||
| ||
|
||
## ~~설치 및 세팅~~ | ||
|
||
2024.04.30 기준 entrylabs/entry-ml 레포지토리가 추가되어 있지 않습니다. 추후 제공 예정입니다. | ||
|
||
### 패키지 매니저로 가져오기 | ||
|
||
```bash | ||
# in package.json | ||
"dependencies": { | ||
# 접두사 dist/가 있는 브랜치는 빌드파일만 있는 브랜치입니다. | ||
"entry-ml": "git+https://github.com/entrylabs/entry-ml.git#dist/develop", | ||
} | ||
``` | ||
|
||
## 설치 및 세팅 | ||
|
||
2024.06.04 기준 entry-ml 레포지토지토리는 압축된 번들 파일로 제공됩니다. | ||
entry-ml 파일을 제공받는 방법에 대해서는 [엔트리 고객센터]([email protected])로 문의 부탁드립니다. | ||
|
||
제공받은 압축파일을 해제하면 아래와 같은 구조로 되어 있습니다. | ||
아래의 파일들을 모두 같은 위치의 디렉토리에 두고 사용해야 합니다. | ||
- **entry-ml.css**, **entry-ml.js** : html에서 불러올 entry-ml의 메인 스크립트와 css파일입니다. | ||
- **313.css**, **313.js**, **549.css**, **549.js**, **869.js**, **933.js**, **khaiii.js** : entry-ml.js, entry-ml.css에서 동적으로 불러오는 js와 css파일입니다. | ||
- **libkhaiii.wasm** : khaiii.js에서 사용하는 wasm파일입니다. | ||
- **resources** : khaiii.js에서 사용하는 리소스가 포함된 디렉토리입니다. | ||
|
||
|
||
### External JavaScript로 가져오기 | ||
|
||
html에서 script태그를 사용하여 번들js와 css파일을 불러와 사용할 수 있습니다. | ||
불러올 js와 css는 entry-ml.js와 entry-ml.css입니다. | ||
|
||
```html | ||
# 설치경로에서 가져오기: node_modules | ||
<link rel='stylesheet' href='/node_modules경로/entry-ml/dist/entry-ml.css'/> | ||
<script type="text/javascript" src='/node_modules경로/entry-ml/dist/entry-ml.js'></script> | ||
|
||
# 설치경로에서 가져오기: 직접 추가한 경우 | ||
<link rel='stylesheet' href='파일경로/entry-ml.css'/> | ||
<script type="text/javascript" src='파일경로/entry-ml.js'></script> | ||
|
||
``` | ||
|
||
<br > | ||
|