edit-dns 
TS library to load, save and recover DNS files
Docs
Install
NPM
npm i edit-dns
Yarn
yarn add edit-dns
Usage
import DnsEditor from 'edit-dns'
const dnsEditor = new DnsEditor('TestApp')
(async () => {
await dnsEditor.save()
await dnsEditor.load(['1.1.1.1'])
console.log(await dnsEditor.exists('1.1.1.1'))
await dnsEditor.recover()
console.log(await dnsEditor.exists('1.1.1.1'))
})()
Variables
Const RESOLV_PATH
RESOLV_PATH: "/etc/resolv.conf" = "/etc/resolv.conf"
Const existsAsync
existsAsync: __promisify__ = promisify(exists)
Const homedir
homedir: string = os.homedir()
Const nonSudoExec
nonSudoExec: __promisify__ = promisify(exec)
Const readFileAsync
readFileAsync: __promisify__ = promisify(readFile)
Const readlinkAsync
readlinkAsync: __promisify__ = promisify(readlink)
Const tmpdir
tmpdir: string = os.tmpdir()
Const unlinkAsync
unlinkAsync: __promisify__ = promisify(unlink)
Const writeFileAsync
writeFileAsync: __promisify__ = promisify(writeFile)
Functions
Const envPaths
- envPaths(name: string, options?: any): object
-
Parameters
-
name: string
-
Optional options: any
Returns object
-
cache: string
-
config: string
-
data: string
-
log: string
-
temp: string
Const escapeRegExp
- escapeRegExp(text: string): string
-
Parameters
Returns string
Const linux
- linux(name: string): object
-
Parameters
Returns object
-
cache: string
-
config: string
-
data: string
-
log: string
-
temp: string
Const macos
- macos(name: string): object
-
Parameters
Returns object
-
cache: string
-
config: string
-
data: string
-
log: string
-
temp: string
Const mkkdirRecursive
- mkkdirRecursive(targetDir: string): string
-
Parameters
Returns string
Const readFileAsLines
- readFileAsLines(path: string): Promise<string[]>
-
Parameters
Returns Promise<string[]>
Const windows
- windows(name: string): object
-
Parameters
Returns object
-
cache: string
-
config: string
-
data: string
-
log: string
-
temp: string