1. Node.js 18 버전 이상 설치

구글에 Node.js 검색해서 설치

https://nodejs.org/en

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

 

 

 

 

2. 편집기인 VSCode 설치

https://code.visualstudio.com/download

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

 

OS 버전에 맞게 설치

 

 

 

 

3. 작업폴더 만들기

 

 

 

4. VSCode 로 3에서 만든 폴더 열기

 

 

 

5. 상단 메뉴 터미널 > 새 터미널 > npx 명령 입력

 

npx create-next-app@latest --experimental-app

 

오류 날 수도 있음!

오류 나면  npm i -g npx 먼저 입력해 보시길. 

혹은 VSCode 껐다키거나 Node.js 를 다시 설치해 봅시다

이렇게 되면 완료.

 

 

 

아까 만든 폴더에 방금 생성한 프로젝트가 생성되었다.

 

 

6. VSCode에서 5에서 만든 폴더 다시 열기

터미널 > 새 터미널 > npm run dev 엔터

해당 주소로 방금 만든 프로젝트를 확인할 수 있다.

 

 

 

참고로 구조은 이렇다

모든 페이지에 원하는 html 을 넣고 싶으면 (상단 네비게이션바나 왼쪽 메뉴바 등) layout.js에 작성하면 된다

 

class Solution {
    public int solution(int n, int k) {
        int yang = 12000 * n;
        int drink = 2000 * (k - (n / 10)) ;
        int answer = yang + drink;
        return answer;
    }
}

'공부 > 프로그래머스' 카테고리의 다른 글

각도기  (1) 2024.01.26
배열 뒤집기  (0) 2024.01.26
아이스 아메리카노  (0) 2024.01.26
옷가게 할인 받기  (0) 2024.01.26
배열의 평균값  (2) 2024.01.26

 

class Solution {
    public int solution(int angle) {
        if(angle == 180) return 4;
        else if(angle > 90) return 3;
        else if(angle == 90) return 2;
        else return 1;
    }
}

'공부 > 프로그래머스' 카테고리의 다른 글

양꼬치  (0) 2024.01.26
배열 뒤집기  (0) 2024.01.26
아이스 아메리카노  (0) 2024.01.26
옷가게 할인 받기  (0) 2024.01.26
배열의 평균값  (2) 2024.01.26

 

class Solution {
    public int[] solution(int[] num_list) {
        int[] answer = new int[num_list.length];
        int index = 0;
        for(int i=num_list.length-1; i>-1; i--){
            answer[index] = num_list[i];
            index++;
        }
        return answer;
    }
}

'공부 > 프로그래머스' 카테고리의 다른 글

양꼬치  (0) 2024.01.26
각도기  (1) 2024.01.26
아이스 아메리카노  (0) 2024.01.26
옷가게 할인 받기  (0) 2024.01.26
배열의 평균값  (2) 2024.01.26

+ Recent posts