전체 글
[js] class
자바스크립트에서 class를 정의하는 방법에는 두 가지가 있다. 먼저 가장 예전의 방법이다. function Class1(a) { this.type = 'number'; this.text = a; this.func = function () { return false; } } console.log(class1.type) // 'number' console.log(class1(123)) // 123 하지만, 이후 자바스크립트가 업데이트가 되면서 class를 제대로 지원하기 시작했다. 위를 constructor 로 다시 써보면 이렇다. class Class1 { constructor(a) { this.type = 'number' this.text = a } func() { return false; } get ..
![[node.js] node.js 기초 설정](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fyic5M%2FbtrTELbp0H3%2FAAAAAAAAAAAAAAAAAAAAACJKfQfzgb_QjqxW6OmpFnSNyOzcojSgSwAzcUcW1kra%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3Du1zt0mCTJlAPE4De0RXwTu%252BNpcs%253D)
[node.js] node.js 기초 설정
node 설치 확인 node -v node 추가 (package.json) npm init express 설치 (node_modules 폴더, package-lock.json) npm install --save express --save는 붙이는 편이 좋다. (자세한 설명은 생략합니다) 기본 서버 파일 생성 (보통 파일 이름을 app.js로 합니다.) const express = require('express'); const app = express(); app.get('/', function(req, res){ res.send('hello NodeJs'); }) app.listen(3000, () => console.log('3000번 포트 대기')); (포트의 숫자는 상관없습니다.) 이후 터미널에서,..
![[Git] Git 기초 설정](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FVIn1K%2FbtrTChhiboA%2FAAAAAAAAAAAAAAAAAAAAAMD0pfwAsxDwNGImIrPpOVAuxh9cv84s1L93Mhzylf1e%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DkXgR5hXDp%252F9P7ny%252FFYHQhmbxh28%253D)
[Git] Git 기초 설정
이 게시글에서는 간결함을 위해 Git의 기초 설정에 대한 내용만 다룹니다. 1. 먼저 git을 우리는 설치해야한다. 운영체제에 유의하여 다운로드를 한다. 어느 버튼을 눌러도 상관없다. (아마 맥쪽이라면 Download for macOs라고 우측에 써있을 것이다.) 2. 설치 과정엔 어느정도 영어가 가능하다면 쉽게 설치할 수 있을 것이다. 만약 안된다면... 이 블로그가 도움이 될 것이다. 3. 설치됐다면 git에 로그인/회원가입을 해야한다. cmd(명령 프롬프트) 혹은 git dash 를 실행시킨다. 다음은 명령어 목록이다. (git bash에서는 입력 앞에 $가 써있지만 무시해도 된다.) git config --list 깃의 설정/정보 등이 나옵니다. user.email = XXX@XXX.com 와 u..
![[Phaser] 순서](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbiWNCh%2Fbtr0m6zCITD%2FAAAAAAAAAAAAAAAAAAAAAOqtruBYohc5gIGwvYUck6wKzBgRTP61YTtLoBGvyrS9%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DnSga4hC7U6g0cbIL3HurDWRo5OY%253D)
[Phaser] 순서
※ Phaser의 수업은 Git → Node.js → Phaser 의 순서로 보시면 됩니다. ※ Git 과 Node.js의 기본적인 내용에 대해 아신다면 그냥 넘어가셔도 됩니다. ※ Git은 필수가 아닙니다. ※ 업데이트 된 목차; 아직 없음
![[Blackcherry.js] 목적](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FvjnGb%2FbtrIiEBBOvV%2FAAAAAAAAAAAAAAAAAAAAAPUkjfMBhUrrhdNVgymjhe7FPsFT1N7PVjDp9goAy07x%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DU16X%252B%252F5BLDnfkZk8OVOrBltqDqk%253D)
[Blackcherry.js] 목적
─ 본 프로젝트는 개발자들이 쉽게 영상 편집을 가능하게 하기 위해 제작되었습니다. 웹에서만 구동가능합니다. ─ 기존 chouxcript는 chouxcript (didam00.github.io) 에서 이용하실 수 있습니다.