Blockly는 맞춤설정 가능한 블록 기반 코드 편집기를 앱에 추가할 수 있는 웹 라이브러리입니다. 이 편집기는 블록과 같은 퍼즐 조각을 사용하여 변수, 논리 표현식, 루프와 같은 코드 개념을 나타냅니다. 이를 통해 사용자는 문법이나 명령줄의 위협에 대해 걱정하지 않고 프로그래밍할 수 있습니다.
더 자세히 살펴보면 Blockly는 다음 두 가지 방식으로 생각할 수 있습니다.
재미있는 퍼즐 조각 UI처럼
멋진 문자열 빌더와 같습니다.
퍼즐 연결과 입력란을 정의하면 Blockly에서 복잡한 렌더링, 드래그, 연결을 처리합니다.
각 블록에 대해 생성되는 문자열 (일반적으로 코드)을 정의하면 Blockly에서 블록의 전체 문자열 연결을 처리합니다. 이 결과를 어떻게 활용할지는 여러분에게 달려 있습니다. 미로 풀기, 캐릭터 애니메이션, 데이터 분석 등 무엇이든 할 수 있습니다. 더 많은 예는 Blockly 애플리케이션 소개를 참고하세요.
Blockly를 사용하면 블록의 작동 방식에 대한 세부정보를 걱정하지 않고 도메인에 블록을 적용하는 데 집중할 수 있습니다. 자세한 내용은 Blockly를 사용해야 하는 이유를 참고하세요.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-06-16(UTC)"],[[["Blockly is a JavaScript library that empowers developers to integrate a visual, block-based programming editor into their web applications."],["This editor simplifies coding by using interlocking blocks to represent code elements, making it accessible to users with varying levels of programming experience."],["Blockly handles the visual aspects and logic of connecting blocks, allowing developers to focus on defining the functionality and behavior of their application."],["Developers can customize Blockly to generate code in various programming languages and utilize it for diverse applications like game development, data analysis, and educational tools."]]],["Blockly is a web library enabling developers to integrate a visual, block-based code editor into applications. It utilizes puzzle-piece blocks to represent code elements, allowing users to program without syntax concerns. Developers define block connections and the resulting code strings. Blockly handles rendering, dragging, and string concatenation. Developers can then use the generated code strings to create various applications like solving mazes or analyzing data, allowing focus on their application instead of block interactions.\n"]]