This package has been deprecated

Author message:

Please use @guanghechen/mini-copy instead

mini-copy
TypeScript icon, indicating that this package has built-in type declarations

0.1.7 • Public • Published

mini-copy based on clipboardy, and it support sharing the clipboard with windows and wsl. But sometimes there has some messy code problem when use both the terminal of wsl and windows (for example, copy content from cmd.exe, and run demo3 in windows terminal), to solve this problem, you could try copy the node_modules/clipboardy/fallbacks/windows/clipboard_*.exe(depends on your machine's architecture) to /mnt/<d|e|f|g>/clipboard.exe.

install

npm install mini-copy // npm
yarn add mini-copy    // yarn

usage

demo1

// demo1
import { copy, paste } from 'mini-copy'
 
 
// @ts-ignore
async function f () {
  const string = '中国,here,hello world,好的,哦哦'
  await copy(string)
  const p = await paste()
  console.log(`#${p}#`)
}
 
 
f().catch(e => console.error(e))

demo2

import { ColorfulChalkLogger, DEBUG } from 'colorful-chalk-logger'
import { copy, paste } from 'mini-copy'


const logger = new ColorfulChalkLogger('mini-copy', {
  colorful: true,
  date: true,
  inline: false,
  level: DEBUG,
})


// @ts-ignore
async function f () {
  const string = '中国,here,hello world,好的,哦哦\n'
  await copy(string, { logger })
  const p = await paste({ logger })
  console.log(`#${p}#`)
}


f().catch(e => console.error(e))

Readme

Keywords

Package Sidebar

Install

npm i mini-copy

Weekly Downloads

1

Version

0.1.7

License

MIT

Unpacked Size

15 kB

Total Files

11

Last publish

Collaborators

  • lemonclown