Skip to content

Latest commit

 

History

History
167 lines (126 loc) · 6.12 KB

README-ko.md

File metadata and controls

167 lines (126 loc) · 6.12 KB

egjs

Build Status

egjs는 jQuery기반의 UI 인터렉션, 이펙트, 유틸리티로 구성된 통합 라이브러리로 다양한 환경을 지원하는 빠른 웹 어플리케이션을 쉽게 개발할 수 있도록 도와준다.

Component

  • eg : eg에서 사용하는 base 유틸리티
  • eg.Class : 객체 지향 스타일의 Class를 개발할 수 있도록 한다.
  • eg.Component : 컴포넌트 개발에 필요한 공통적 기능을 가진 클래스
  • eg.MovableCoord : 사용자 행동에 따른 좌표를 계산하는 컴포넌트
  • eg.Flicking : 플리킹 인터랙션을 구현하는 컴포넌트
  • eg.Visible : 요소가 뷰포트상에 위치해 있는지 확인하는 컴포넌트
  • eg.infiniteGrid : 카드 격자형 컨텐츠를 무한 배치하는 컴포넌트

jQuery Extensions

methods

  • persist : 히스토리 네비게이션시 데이터를 저장/복원할 수 있는 캐시 인터페이스
  • css : jQuery버전에서 자동으로 vendor prefix를 지원하지 않는 경우 prefix없이 사용하게 하는 확장기능
  • animate : jQuery animate 확장해 transform 및 3d 가속 지원

events

  • rotate : 디바이스의 회전을 감지하는 이벤트
  • scrollend : 스크롤의 마지막 시점을 알려주는 이벤트

Download

최신버전은 https://github.com/naver/egjs/tree/gh-pages 에서 다운로드 받을 수 있다.

Uncompressed (개발버전)

Compressed (제품버전)

with Bower

# bower가 설치되지 않은경우 (관리자 계정 필요)
$ npm install bower -g

# bower를 이용해 egjs 설치
$ bower install egjs

Browser Support

Internet Explorer Chrome FireFox Safari iOS Android
7+ 최신 최신 최신 7+ 2.3+ (3.x는 제외)
  • 컴포넌트별 지원범위가 다를수 있으며, 사용시 API 문서를 참조한다.

의존성

egjs는 다음의 라이브러리들에 대한 의존성을 가지고 있다.

|jQuery|hammer.js|Outlayer| |---|---|---|---| |1.7.0+ |2.0.4+|1.4.2+|

  • jQuery를 제외한 나머지는 반드시 필요하진 않으며, 컴포넌트에 따라 의존성은 다를 수 있다.

사용방법

의존성 라이브러리(jquery.js, hammer.js, outlayer.js) 들을 먼저 로딩 후, eg.js(또는 eg.min.js)를 로딩한다.

<script src="bower_components/jquery/jquery.js"></script>
<script src="bower_components/hammer.js/hammer.js"></script>
<script src="bower_components/outlayer/outlayer.js"></script>
<script src="dist/eg.js"></script>

egjs를 사용할 준비가 되었다. egjs는 eg 네임스페이스를 갖으며, 다음의 예제와 같이 사용한다.

var Klass = eg.Class({
    "construct" : function(){}
});
var Komponent = eg.Class.extend(eg.Component,{
    "construct" : function(){}
});

egjs 개발

egjs를 개발하고자 하는 개발자는 아래 순서대로, 개발 환경을 구성한다.

Project setting

1. grunt-cli, bower 설치

# grunt-cli와 bower를 전역으로 설치 (관리자 계정 필요)
$ npm install grunt-cli -g  # grunt-cli
$ npm install bower -g  # bower

2. 다음 명령어를 이용해 저장소 복제와 의존성 모듈을 설치한다.

# 폴더 생성 및 이동
$ mkdir egjs && cd egjs

# 저장소로부터 코드를 복제
$ git clone https://github.com/naver/egjs.git

# bower 의존성 모듈 설치
$ bower install

# node 의존성 모듈 설치
$ npm install

3. Build

grunt의 build 태스크를 실행하여, 빌드작업을 진행한다.

$ grunt build

빌드가 정상적으로 완료되면 :

  • dist 폴더에 eg.jseg.min.js이 생성된다.
  • API 문서는 doc 폴더에 생성되며, doc/index.html으로 접근할 수 있다.

테스트

branch를 생성한 후, 개발이 완료되면 push 하기 전에 꼭! 단위 테스트를 수행한다. grunt test를 실행하면, jshint, qunit, istanbul 커버리지 측정이 실행된다.

$ grunt test
  • coverage 결과는 grunt 실행시 확인할 수 있으며, ./report/index.html 파일을 통해 확인 할 수도 있다.

이슈등록

버그를 발견하게 되면, issues page 페이지를 통해 등록할 수 있다.

라이센스

egjs는 MIT로 배포된다.

Copyright (c) 2015 NAVER Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Analytics