Features:
s3://uploads/avatar.pngget, post, put, head and delete methods to handle files.In comparison to NodeJS sync-async contract: all functions with generic name are synchronous, and the
**Asyncare asynchronous with the same interface. Sync versions never throw exceptions and are designed to be used in not performance critical applications, like bash scripts, etc. GoAsync.
import { File } from 'atma-io'
const file = new File('./test.txt');
Path is relative to the cwd (except windows os, when drive letter is used). To specify system absolute path, use file:// protocol.
read readAsyncRead file's content. If encoding is set to null raw Buffer is returned.
For each read middleware pipeline is used, to skip it, set skipHooks to true.
Hooks will be per default executed. For example, when reading from
*.jsonfile the string will be deserialized to json object
let content = file.read<TOut = string>( options?: {
encoding?: 'buffer' | 'utf8' //> default 'utf8'
skipHooks?: boolean //> false
aes256?: { secret: string }
});
let content = await file.readAsync <TOut = string> (options?: {
encoding?: 'buffer' | 'utf8', //> 'utf8'
skipHooks?: boolean //> false
aes256?: { secret: string }
});
readRange readRangeAsyncGet bytes or string for a range from the file
let content = file.readRange(position, length);
let content = await file.readRangeAsync(position, length)
write writeAsyncHooks will be per default executed. For example, when writing to
*.jsonfile and providing an object, this object will be serialized to json string
file.write(string | Buffer | any, options?: {
skipHooks?: boolean
aes256?: { secret: string }
})
file
.writeAsync(content: string | Buffer | any, options?: {
skipHooks?: boolean
aes256?: { secret: string }
})
.then(() => {}, (err) => {})
append appendAsyncfile.append(content: string)
await file.appendAsync(string);
exists existsAsynclet b: boolean = file.exists()
let b: boolean = await file.existsAsync();
copyTo copyToAsyncinterface IFileCopyOpts {
silent?: boolean
baseSource?: string
}
/**
* @param path: Target file path or directory, when ends with slash
*/
file.copyTo(path: string, opts?: IFileCopyOpts): boolean
file.copyToAsync(path: string, opts?: IFileCopyOpts): Promise<boolean>
rename renameAsyncfile.rename(filename: string)
file.renameAsync(filename: string): Promise<void>
replace replaceAsyncReads the content as string, replaces the matches and writes the result.
Expected arguments are the same as for JavaScripts string replace.
Returns new content.
file.replace(search: string | RegExp, replacer: string | Function): string
file.replaceAsync(search: string | RegExp, replacer: string | Function): Promise<string>
remove removeAsyncfile.remove(): boolean
file.removeAsync(): Promise<boolean>
watchWatch file for changes
file.watch(cb: (path) => void)
file.unwatch(cb?: (path) => void): boolean
Each read will be cached. To control cache behavior use next methods:
File.clearCache(<?string> path);
When path is null, then all cache is dropped.
File.disableCache();
File.disableCache();
There are some static methods, so that there is no need to initialize the File instance.
File[method] //> Function(filepath, [..args])
// methods:
'exists'
'existsAsync'
'read'
'readAsync'
'readRange'
'readRangeAsync'
'write'
'writeAsync'
'append'
'appendAsync'
'remove'
'removeAsync'
'replace'
'replaceAsync'
'rename'
'renameAsync'
'copyTo'
'copyToAsync'
// sample
File
.readAsync('/baz.txt')
.done(function(content){
console.log(content);
})
.fail(function(error){
console.error(error);
})
;
Middleware pattern is used for all reads and writes. It can be used, for example, to compile coffee script to javascript on the fly. Or when reading *.yml file, the resulted content is not a YAML string, but already parsed object.
To get the idea, look at the hook definition sample:
import { File } from 'atma-io'
File.registerExtensions({
'coffee':[
'conditions:read',
'coffee-compiler:read',
'uglify:write'
]
});
Each middleware has unique name and is registered in this way:
import { File } from 'atma-io'
File.middleware['coffee'] = {
read: function(<io.File> file, <Object> config){
let coffee = require('coffee-script');
file.content = coffee.compile(file.content);
},
write: function(<io.File> file, <Object> config){
// ... do smth with `content` before disk write
}
};
import { File } from 'atma-io'
File
.getHookHandler()
.register({
regexp: <RegExp>,
method: <'read'|'write'>,
handler: <Function | Object> handler,
zIndex: <?Number> // default: 0
});
Path is matched by the regexp. The greater zIndex is, the later it is called in the pipeline, otherwise the handlers are called in the order they were registered.
_Lately will be converted into plugins,
Generated using TypeDoc