NodeUtils
Import :
const NodeUtils = brackets.getModule("utils/NodeUtils")
isNodeReady ⇒ boolean
checks if Node connector is ready
Kind: global variable
Returns: boolean
- returns true if it's ready, otherwise false
Strings
Generic node util APIs connector. see src-node/utils.js
for node peer
Kind: global constant
fetchURLText(url, encoding) ⇒ Promise.<string>
Fetches text content from a URL This is only available in the native app
Kind: global function
Param | Type |
---|---|
url | string |
encoding | string |
getPhoenixBinaryVersion() ⇒ Promise.<string>
Gets the version of the Phoenix binary This is only available in the native app
Kind: global function
getLinuxOSFlavorName() ⇒ Promise.<(string|null)>
Retrieves the Linux OS flavor name This is only available in the native app on Linux
Kind: global function
openUrlInBrowser(url, browserName)
Opens a URL in the default browser. This is only available in the native app.
Kind: global function
Param | Type |
---|---|
url | string |
browserName | string |
getEnvironmentVariable(varName) ⇒ Promise.<string>
Gets an environment variable's value This is only available in the native app
Kind: global function
Param | Type |
---|---|
varName | string |
ESLintFile(text, fullFilePath, projectFullPath)
Runs ESLint on a file This is only available in the native app
Kind: global function
Param | Type |
---|---|
text | string |
fullFilePath | string |
projectFullPath | string |