├── .flowconfig ├── image ├── jQuery.png ├── nodeJS.png ├── example.png └── user_func.png ├── docs ├── nodejs │ ├── domain.json │ ├── tty.json │ ├── dgram.json │ ├── querystring.json │ ├── punycode.json │ ├── cluster.json │ ├── console.json │ ├── zlib.json │ ├── url.json │ ├── net.json │ ├── timers.json │ ├── readline.json │ ├── repl.json │ ├── os.json │ ├── path.json │ ├── http.json │ ├── dns.json │ ├── vm.json │ ├── https.json │ ├── util.json │ ├── process.json │ ├── crypto.json │ ├── child_process.json │ └── tls.json ├── RegExp.json ├── global.json ├── Math.json ├── reactjs │ └── component.json ├── window.json ├── Statements.json ├── Array.json └── String.json ├── package.json ├── InlineDocsViewer.html ├── Readme.md ├── QuickOpenJS.js ├── WebPlatformDocsJS.less └── InlineDocsViewer.js /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /image/jQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets-QuickDocsJS/master/image/jQuery.png -------------------------------------------------------------------------------- /image/nodeJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets-QuickDocsJS/master/image/nodeJS.png -------------------------------------------------------------------------------- /image/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets-QuickDocsJS/master/image/example.png -------------------------------------------------------------------------------- /image/user_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikunia/brackets-QuickDocsJS/master/image/user_func.png -------------------------------------------------------------------------------- /docs/nodejs/domain.json: -------------------------------------------------------------------------------- 1 | {"create":{"y":"domain.create()","s":"

Returns a new Domain object.\n\n<\/p>\n","p":[]}} 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "quickdocsjs", 3 | "title": "QuickDocsJS", 4 | "author": "Ole Kröger", 5 | "homepage": "https://github.com/Wikunia/brackets-QuickDocsJS", 6 | "version": "1.6.10", 7 | "engines": { "brackets": ">=0.23" }, 8 | "description": "Inline short documentation for JavaScript functions, including a summary,syntax and parameters. Docs for jQuery,NodeJS and some basic ReactJS functions." 9 | } 10 | -------------------------------------------------------------------------------- /docs/nodejs/tty.json: -------------------------------------------------------------------------------- 1 | {"isatty":{"y":"tty.isatty(fd)","s":"

Returns true<\/code> or false<\/code> depending on if the fd<\/code> is associated with a\nterminal.\n\n\n<\/p>\n","p":[{"o":false,"t":"fd","d":"","type":""}]},"setRawMode":{"y":"tty.setRawMode(mode)","s":"

Deprecated. Use tty.ReadStream#setRawMode()<\/code>\n(i.e. process.stdin.setRawMode()<\/code>) instead.\n\n\n<\/p>\n","p":[{"o":false,"t":"mode","d":"","type":""}]}} 2 | -------------------------------------------------------------------------------- /docs/RegExp.json: -------------------------------------------------------------------------------- 1 | {"exec":{"s":"The exec() method executes a search for a match in a specified string. Returns a result array, or null.","y":"regexObj.exec(str)","p":[{"t":"str","d":"The string against which to match the regular expression."}]},"test":{"s":"The test() method executes a search for a match between a regular expression and a specified string. Returns true or false.","y":"regexObj.test(str)","p":[{"t":"str","d":"The string against which to match the regular expression."}]},"toSource":{"s":"The toSource() method returns a string representing the source code of the object.","y":"regexObj.toSource()\nRegExp.toSource()\n","p":null},"toString":{"s":"The toString() method returns a string representing the regular expression.","y":"regexObj.toString()","p":null}} -------------------------------------------------------------------------------- /docs/nodejs/dgram.json: -------------------------------------------------------------------------------- 1 | {"createSocket":{"y":"dgram.createSocket(type, [callback])","s":"

Creates a datagram Socket of the specified types. Valid types are udp4<\/code>\nand udp6<\/code>.\n\n<\/p>\n

Takes an optional callback which is added as a listener for message<\/code> events.\n\n<\/p>\n

Call socket.bind<\/code> if you want to receive datagrams. socket.bind()<\/code> will bind\nto the "all interfaces" address on a random port (it does the right thing for\nboth udp4<\/code> and udp6<\/code> sockets). You can then retrieve the address and port\nwith socket.address().address<\/code> and socket.address().port<\/code>.\n\n<\/p>\n","p":[{"o":false,"t":"type","d":"String. Either 'udp4' or 'udp6'","type":""},{"o":true,"t":"callback","d":"Function. Attached as a listener to `message` events.","type":""}]}} 2 | -------------------------------------------------------------------------------- /docs/nodejs/querystring.json: -------------------------------------------------------------------------------- 1 | {"stringify":{"y":"querystring.stringify(obj, [sep], [eq])","s":"

Serialize an object to a query string.\nOptionally override the default separator ('&'<\/code>) and assignment ('='<\/code>)\ncharacters.\n\n<\/p>\n

Example:\n\n<\/p>\n

querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' })\n\/\/ returns\n'foo=bar&baz=qux&baz=quux&corge='\n\nquerystring.stringify({foo: 'bar', baz: 'qux'}, ';', ':')\n\/\/ returns\n'foo:bar;baz:qux'<\/code><\/pre>\n","p":[{"o":false,"t":"obj","d":"","type":""},{"o":true,"t":"sep","d":"","type":""},{"o":true,"t":"eq","d":"","type":""}]},"parse":{"y":"querystring.parse(str, [sep], [eq], [options])","s":"

Deserialize a query string to an object.\nOptionally override the default separator ('&'<\/code>) and assignment ('='<\/code>)\ncharacters.\n\n<\/p>\n

Options object may contain maxKeys<\/code> property (equal to 1000 by default), it'll\nbe used to limit processed keys. Set it to 0 to remove key count limitation.\n\n<\/p>\n

Example:\n\n<\/p>\n

querystring.parse('foo=bar&baz=qux&baz=quux&corge')\n\/\/ returns\n{ foo: 'bar', baz: ['qux', 'quux'], corge: '' }<\/code><\/pre>\n","p":[{"o":false,"t":"str","d":"","type":""},{"o":true,"t":"sep","d":"","type":""},{"o":true,"t":"eq","d":"","type":""},{"o":true,"t":"options","d":"","type":""}]}}
2 | 


--------------------------------------------------------------------------------
/docs/nodejs/punycode.json:
--------------------------------------------------------------------------------
1 | {"decode":{"y":"punycode.decode(string)","s":"

Converts a Punycode string of ASCII code points to a string of Unicode code\npoints.\n\n<\/p>\n

\/\/ decode domain name parts\npunycode.decode('maana-pta'); \/\/ 'ma\u00f1ana'\npunycode.decode('--dqo34k'); \/\/ '\u2603-\u2318'<\/code><\/pre>\n","p":[{"o":false,"t":"string","d":"","type":""}]},"encode":{"y":"punycode.encode(string)","s":"

Converts a string of Unicode code points to a Punycode string of ASCII code\npoints.\n\n<\/p>\n

\/\/ encode domain name parts\npunycode.encode('ma\u00f1ana'); \/\/ 'maana-pta'\npunycode.encode('\u2603-\u2318'); \/\/ '--dqo34k'<\/code><\/pre>\n","p":[{"o":false,"t":"string","d":"","type":""}]},"toUnicode":{"y":"punycode.toUnicode(domain)","s":"

Converts a Punycode string representing a domain name to Unicode. Only the\nPunycoded parts of the domain name will be converted, i.e. it doesn't matter if\nyou call it on a string that has already been converted to Unicode.\n\n<\/p>\n

\/\/ decode domain names\npunycode.toUnicode('xn--maana-pta.com'); \/\/ 'ma\u00f1ana.com'\npunycode.toUnicode('xn----dqo34k.com'); \/\/ '\u2603-\u2318.com'<\/code><\/pre>\n","p":[{"o":false,"t":"domain","d":"","type":""}]},"toASCII":{"y":"punycode.toASCII(domain)","s":"

Converts a Unicode string representing a domain name to Punycode. Only the\nnon-ASCII parts of the domain name will be converted, i.e. it doesn't matter if\nyou call it with a domain that's already in ASCII.\n\n<\/p>\n

\/\/ encode domain names\npunycode.toASCII('ma\u00f1ana.com'); \/\/ 'xn--maana-pta.com'\npunycode.toASCII('\u2603-\u2318.com'); \/\/ 'xn----dqo34k.com'<\/code><\/pre>\n","p":[{"o":false,"t":"domain","d":"","type":""}]}}
2 | 


--------------------------------------------------------------------------------
/docs/nodejs/cluster.json:
--------------------------------------------------------------------------------
1 | {"setupMaster":{"y":"cluster.setupMaster([settings])","s":"

setupMaster<\/code> is used to change the default 'fork' behavior. Once called,\nthe settings will be present in cluster.settings<\/code>.\n\n<\/p>\n

Note that:\n\n<\/p>\n