티스토리 뷰

728x90

https://www.youtube.com/watch?v=u0BypNb0lEI 

일단 우리가 사용할 툴에 대해서 알아봅시다

 

원하는 애디터를 선택하기를 바랍니다

 

예를 들면, Visual Studio Code , Atom , Sublime Text 등등 원하는걸로 선택해주세요

 

저는 (Repl) 를 사용할겁니다

 

Repl도 꽤 괜찮습니다 Code Editor 같은 건데

 

다운로드가 굳이 필요 없습니다

 

그래서 제가 좋아하는 것중에 하나입니다

 

개인 파일이랑 결과를 여기서 전부 볼 수 있습니다

 

당연히 큰 프로젝트를 할때는 VSCode도 사용하는데

 

컨셉을 보여준다거나 하는 용도의 작은 프로잭트는 Repl만 사용할겁니다

https://replit.com/

 

The collaborative browser based IDE

Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages.

replit.com

html

<!DOCTYPE html>
<html>
    <head>
        <title>Something</title>
        <link rel="stylesheet"
         href="index.css">
    </head>
    <body>
        <h1>This works!</h1>
        <script src="index.js"></script>
    </body>
</html>

css

body {
    background-color: peru;
}

h1 {
    color: white;
}

js

console.log('im Working. Im JS. Im Beautiful. Im worth it');

결과

댓글