New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ansi-to-vue3

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ansi-to-vue3

This package convert ANSI escape codes to formatted text output for Vue3. Copy from ansi-to-react.

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
881
decreased by-18.27%
Maintainers
1
Weekly downloads
 
Created
Source

ansi-to-vue3

This package convert ANSI escape codes to formatted text output for Vue3. Copy from ansi-to-react.

Installation

$ yarn add ansi-to-vue3
$ npm install -S ansi-to-vue3

playground

git clone https://github.com/jerrywu001/ansi-to-vue3

npm i

npm run dev

Usage

Basic

The example below shows how we can use this package to render a string with ANSI escape codes.

<template>
  <Ansi>{{ '\u001b[34mhello world' }}</Ansi>
</template>

<script setup lang="ts">
import Ansi from 'ansi-to-vue3';
</script>

Will render:

<code>
  <span style="color:rgb(0, 0, 187)">hello world</span>
</code>

Classes

Style with classes instead of style attribute.

<template>
  <Ansi use-classes>{{ "\u001b[34mhello world" }}</Ansi>
</template>

<script setup lang="ts">
import Ansi from 'ansi-to-vue3';
</script>

Will render

<code>
  <span class="ansi-blue-fg">hello world</span>
</code>
Class Names
Font colorBackground Color
ansi-black-fgansi-black-bg
ansi-red-fgansi-red-bg
ansi-green-fgansi-green-bg
ansi-yellow-fgansi-yellow-bg
ansi-blue-fgansi-blue-bg
ansi-magenta-fgansi-magenta-bg
ansi-cyan-fgansi-cyan-bg
ansi-white-fgansi-white-bg
ansi-bright-black-fg
ansi-bright-red-fg
ansi-bright-green-fg
ansi-bright-yellow-fg
ansi-bright-blue-fg
ansi-bright-magenta-fg
ansi-bright-cyan-fg
ansi-bright-white-fg

Development

To develop on this project, fork and clone this repository on your local machine. Before making modifications, install the project's dependencies.

$ npm install

To run the test suite for this project, run:

$ npm test

Support

If you experience an issue while using this package or have a feature request, please file an issue on the issue board,

Keywords

FAQs

Package last updated on 09 Aug 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc