How to Build Your Own Capacitor Plugin for Ionic | Devdactic - Ionic Tutorials

Capacitor: Cross-platform native runtime for web apps

내용 요약

  1. npm init @capacitor/plugin 으로 Plugin 프로젝트를 생성한다.

Untitled

  1. npm run build 로 Plugin 을 build 한다.
  2. npm install (Plugin path) 로 아이오닉 프로젝트에서 해당 Plugin 을 추가한다.
  3. 아이오닉 프로젝트에서 해당 플러그인을 import 및 로드해서 테스트 , 디버깅을 한다.

Plugin이 Node_module에 추가될때, 복사본이 추가 되는 것이 아닌, 원본 Plugin가 링크 형태로 추가된다.

Untitled