npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

learn-helloworld-capacitor

v0.0.2

Published

Learn how to create and publish a capacitor plugin

Downloads

5

Readme

learn-helloworld-capacitor

Learn how to create and publish a capacitor plugin

Install

npm install learn-helloworld-capacitor
npx cap sync

API

echo(...)

echo(options: { value: string; }) => Promise<{ value: string; }>

| Param | Type | | ------------- | ------------------------------- | | options | { value: string; } |

Returns: Promise<{ value: string; }>


Paso 1: Inicialización de un Plugin Capacitor

Creación del Plugin

  1. Prompt: npm init @capacitor/plugin@latest
    • Inicia la creación de un nuevo plugin Capacitor utilizando la última versión disponible.

Configuración Adicional

  1. Prompt: What should be the Package ID for your plugin?
    • Define el identificador único del paquete para el plugin (ej. com.example.learnhelloworldcapacitor).
  2. Prompt: What should be the class name for your plugin?
    • Define el nombre de la clase principal del plugin (ej. LearnHelloworldCapacitorPlugin).
  3. Prompt: What is the repository URL for your plugin?
    • Especifica la URL del repositorio donde se alojará el código del plugin (ej. https://github.com/username/learn-helloworld-capacitor).
  4. Prompt: Who is the author of this plugin?
  5. Prompt: What license should be used for your plugin?
    • Selecciona la licencia bajo la cual se distribuirá el plugin (ej. MIT).
  6. Prompt: Enter a short description of plugin features.
    • Proporciona una descripción breve de las características del plugin (ej. A Capacitor plugin to demonstrate basic plugin creation with a simple 'Hello World' feature.).

Paso 2: Ejecución de Comandos Automáticos

Después de la configuración inicial, se ejecutaron los siguientes comandos de manera automática:

  • Comandos Automáticos:

    perlCopy code
    npm install --no-package-lock
    npm run fmt
      

Paso 3: Construcción y Configuración Final

Construcción del Plugin

  • Comandos de Construcción:

      
    npm run build
      
    • Se limpian los archivos, se genera documentación, se compila TypeScript y se ejecuta Rollup para la configuración de construcción.

Configuración Final

  • Configuración de Capacitor:

      
    npx cap copy
    npx cap add iOS
    npx cap add android
      
    • Se realiza la configuración inicial de Capacitor para iOS y Android.

Inicialización de Git

  • Inicialización de Git:

    cssCopy code
    git init
    git checkout -b main
    git add -A
    git commit -m "Initial commit" --no-gpg-sign
      
    • Se inicia un repositorio Git, se crea la rama principal (main), se añaden los archivos y se realiza el primer commit.

Paso 4: Finalización y Recomendaciones

  • Finalización:

    Copy code
    🎉 Capacitor plugin generated! 🎉
      
    • El plugin ha sido generado exitosamente.

Siguientes Pasos Recomendados

  • Siguientes Pasos:

    • Navegar al directorio del plugin (cd custom-capacitor-plugins/learn-helloworld-capacitor/).
    • Abrir CONTRIBUTING.md para aprender sobre los scripts npm disponibles.
    • Continuar siguiendo la documentación para el desarrollo de plugins: Documentación de Capacitor.
    • Para preguntas o discusiones, abrir un hilo de discusión en GitHub: Discussions.
    • Conocer más sobre la Comunidad Capacitor: Capacitor Community 💖.

    Creación de Plugins de Capacitor

    Paso 1: Inicialización de un Plugin Capacitor

    Para crear el Plugin:

    1. Ejecute el comando: npm init @capacitor/plugin@latest
      • Inicia la creación de un nuevo plugin Capacitor utilizando la última versión disponible.

    Configuración Adicional

    1. Cuando se le pregunte: What should be the Package ID for your plugin?
      • Defina el identificador único del paquete para el plugin (ej. com.example.learnhelloworldcapacitor).
    2. Cuando se le pregunte: What should be the class name for your plugin?
      • Defina el nombre de la clase principal del plugin (ej. `LearnHelloworldCapacitorPlugin

#How to use in ionic APP ``` import { Component, OnInit } from '@angular/core'; import { LearnHelloworldCapacitorPlugin } from 'learn-helloworld-capacitor';

@Component({ selector: 'app-tab1', templateUrl: 'tab1.page.html', styleUrls: ['tab1.page.scss'], }) export class Tab1Page implements OnInit { constructor() { console.log('>>>>>>>>>>>>> edward iniciado app'); } ngOnInit(): void { LearnHelloworldCapacitorPlugin.echo({ value: 'edward' }).then( (data: any) => { console.log('>>>>>>>>>>>>> edward data desde plugin', data); } ); } }

```