The #inlcude #include directive includes one Node.js source file within another.
...
The file name can optionally be qualified with a directory name, otherwise the pathlist is used to locate the file.
Examples
Code Block | ||||
---|---|---|---|---|
| ||||
// Included file is copy.js in the pathlist #include copy.js // Included file is mylib/copy.js in the 'modules' directory #include mylib/copy.js |
...