1.1.0 • Published 4 years ago

fsdocs v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

FSDocs

A node utility to handle saving text files.

This makes it easier to save text content to disk - for instance when a payload of content in an API request needs to be saved to the server as a static file.

Usage

Instantiate the FSDocs class with the basePath for the save location - must be an absolute path

const FSDocs = require('fsdocs')

const docsManager = new FSDocs('/path/to/save/loation)

Create a file

docsManager.createFile(path, name, ext, content) returns a promise with the absolute path of the created file

await docsManager.createFile('path', 'file-name', '.txt', 'File Content')

Read a file

docsManager.readFile(path) returns a promise with the content of the file

await docsManager.readFile('path/to/file.txt')

Read a directory

docsManager.listFiles(path) returns a promise with an array of filenames

await docsManager.listFiles('path/to/dir')

Update a file

docsManager.updateFile(path, content) returns a promise with the absolute path of the created file

await docsManager.updateFile('path/to/file.txt', 'Updated File Content')

Delete a file

docsManager.deleteFile(path) returns a promise with the absolute path of the deleted file

await docsManager.deleteFile('path/to/file.txt')

API documentation

Read the JSDocs

2020 Adam Davis (ICS)

gi

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago