0.0.8 • Published 9 months ago

inline-attacher v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

šŸ“Ž Inline Attacher

NPM Version NPM Downloads License

A modern port of Inline Attachment

šŸ”— https://eastsun5566.github.io/inline-attacher/

Installation

npm i inline-attacher

Usage

  • Input / Textarea

    import { attach } from "inline-attacher";
    
    const textarea = document.querySelector("textarea");
    attach(textarea, { uploadUrl: "https://example.com/upload" });
  • CodeMirror v6

    import { EditorView } from "codemirror";
    import { inlineAttachmentExtension } from "inline-attacher";
    
    const editor = new EditorView({
      extensions: [
        inlineAttachmentExtension({ uploadUrl: "https://example.com/upload" }),
      ],
      parent: document.body,
    });