Dart 기본 지식

iseon_u·2023년 3월 27일
0

Dart

목록 보기
1/5
post-thumbnail

Dart


Dart Compiler

  • Dart Native
    • ARM32
    • ARM64
    • x86_64
  • Dart Web
    • JavaScript

Machine code

  • JIT just-in-time
    • 개발 도중 결과를 바로 확인 가능
  • AOT ahead-of-time
    • 개발 이후 빌드시 빠른 실행 가능
  • Null Safety

Dart 설치 (Windows)

  • https://dartpad.dev/
    • 웹 에디터
  • 기본 설치 방법
    1. Chocolatey 설치

      $ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('[https://community.chocolatey.org/install.ps1](https://community.chocolatey.org/install.ps1)'))
    2. Dart 설치

      $ choco install dart-sdk
profile
🧑🏻‍💻 Hello World!

0개의 댓글