시작 방법
여기 웹 페이지에서 완전히 동작하는 Kanban 보드를 설정하는 과정을 단계별로 안내하는 간단한 튜토리얼이 있습니다.
1단계. 소스 파일 포함하기
먼저, HTML 파일을 만들어 index.html로 이름을 지정하세요. 그 다음, Kanban 소스 파일을 이 파일에 추가합니다.
필요한 파일은 두 가지입니다:
- Kanban JS 파일
- Kanban CSS 파일
index.html
<!DOCTYPE html>
<html>
<head>
<title>How to Start with Kanban</title>
<script src="./dist/kanban.js"></script>
<link href="./dist/kanban.css" rel="stylesheet">
</head>
<body>
<script>
// your code will be here
</script>
</body>
</html>
Kanban을 npm 또는 yarn으로 설치하기
Kanban은 yarn
이나 npm
을 사용하여 프로젝트에 가져올 수도 있습니다.