0.0.3 • Published 6 years ago
sophy v0.0.3
Sophy - fs module wrapper library
Installation
yarn add sophy
# or
npm install sophySimple usage
import sophy from 'sophy'
;(async () => {
// Write a new file at current working directory.
await sophy.write('test.txt', 'Hello world')
})()