copie

Copy a file.

Usage no npm install needed!

<script type="module">
  import copie from 'https://cdn.skypack.dev/copie';
</script>

README

copie npm

Copy a file.

  • no CLI
  • no globs
  • no mkdir -p
  • no side effects such as stdout
  • Promise only API
  • preserve uid, gid, mode, atime and mtime stats

Install

$ yarn add copie

Usage

import copie from 'copie'

copie('/from/file/path', '/to/file/path')
  .then(() => console.log('done'))
  .catch(console.error)