New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

echo-editor

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

echo-editor

A modern AI-powered WYSIWYG rich-text editor for Vue, based on Tiptap and shadcn-vue

latest
Source
npmnpm
Version
0.5.0
Version published
Weekly downloads
286
-31.08%
Maintainers
1
Weekly downloads
 
Created
Source

Echo Editor

A modern AI-powered WYSIWYG rich-text editor for Vue, based on tiptap and shadcn-vue.

MIT License

English | 中文

App Screenshot

Demo

Live Demo

Features

  • 🎨 Beautiful UI with shadcn-vue components
  • ✨ AI-powered writing assistance
  • 📝 Markdown support with real-time preview
  • 🔤 Rich text formatting (headings, lists, quotes, etc.)
  • 📊 Tables and code blocks
  • 🎯 Custom font sizes and styles
  • 📄 Import from Word documents
  • 🌍 I18n support (en, zhHans)
  • 🧩 Extensible architecture - create your own extensions
  • 🎭 TypeScript support
  • 🎨 Tailwind CSS support

Installation

npm install echo-editor
# or
pnpm install echo-editor
# or
yarn add echo-editor

Usage

Method 1: Global Registration

// main.ts
import { createApp } from 'vue'
import App from './App.vue'
import EchoEditor from 'echo-editor'
import 'echo-editor/style.css'

const app = createApp(App)
app.use(EchoEditor)
app.mount('#app')
<script setup>
import { ref } from 'vue'
import { BaseKit } from 'echo-editor'

const content = ref('')
const extensions = [
  BaseKit.configure({
    placeholder: {
      placeholder: 'Start writing...',
    },
  }),
]
</script>

<template>
  <echo-editor :extensions="extensions" v-model="content" />
</template>

Method 2: Direct Usage

<script setup>
import { EchoEditor, BaseKit } from 'echo-editor'
import 'echo-editor/style.css'

const content = ref('')
const extensions = [
  BaseKit.configure({
    placeholder: {
      placeholder: 'Start writing...',
    },
  }),
]
</script>

<template>
  <echo-editor :extensions="extensions" v-model="content" />
</template>

Development

  • Install pnpm
  • Clone the repository
  • Run pnpm install
  • Start development server with pnpm dev

To test the build version:

pnpm examples

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

Keywords

echo editor

FAQs

Package last updated on 18 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts