Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
The build tree structure used internally by mako
When working with mako build hooks, the first 2 arguments will be the current file
and the build
tree
respectively. Currently, both of those APIs are contained in this module, as they tightly
coupled and don't make much sense on their own. (at least at the current time)
Throughout the "analyze" phase, a tree is being built up, starting from the list of entry files. Each file being processed adds any direct dependencies, which will then recursively be processed to find more dependencies. Each vertex in the graph corresponds to some sort of input file.
During the "build" phase, the tree may be trimmed down, such as the case where the entire dependency chain for a JS file will be combined into a single output file. By the end of the build, each vertex in the graph corresponds to an output file.
As mako continues to be developed and evolve, some documentation and guides dedicated to plugin authors will surface. For now, the following is purely the API available to both the
file
andtree
parameters in plugins/hooks.
The Tree
constructor (documented below) is the primary export for the module. It must be used
with the new
keyword.
var Tree = require('mako-tree');
var tree = new Tree();
Each instance represents a build tree. Internally, a graph is used to manage the relationships between all the files being tracked.
NOTE: All paths are assumed to be absolute, this library makes no attempt to set a base/root directory and maintain relative paths.
Returns a Boolean
reflecting if the file at the given location
exists in this tree.
Adds a file at the given location
to the tree, if it is not already present, and returns the
corresponding File
instance.
Returns the File
instance for the file at the given location
. It is assumed to already be part
of the graph, and will throw an error if not found.
Returns an Array
of all the files in this graph.
If options.topological
is set, the returned list will be in
topological order, which respects all
dependencies so processing is safe where order matters.
If options.objects
is set, the returned list will be File
objects.
Removes the file at the given location
from the tree. To successfully remove a file, it must not
be depended on by another file. This is mostly a plumbing function, and plugin authors are likely
going to use removeDependency()
instead.
Returns a Boolean
telling whether or not the file at location
is an entry file. (in other
words, is not a dependency)
Returns an Array
of all the entry files in this graph. (in other words, files that are at the
end of the dependency chains)
If options.from
is set, the returned list will only include entries that are reachable from that
specified file.
If options.objects
is set, the returned list will be File
objects.
Returns a Boolean
reflecting if the dependency relationship between parent
and child
already
exists in the tree.
Adds a new dependency relationship to the graph setting parent
as depending on child
. If
child
is not already part of the tree, it will be added. (however, if parent
is not in the tree,
that is assumed to be an error) This will return the File
instance for the child
file.
Removes the specified dependency relationship, basically saying that parent
no longer depends on
child
)
NOTE: If no other files depend on child
, it will be removed from the tree. This allows
plugins to only concern themselves with the relationships they are aware of, leaving the overall
tree management to mako.
Returns an Array
of files that are dependencies of the given file
.
By default, it will only return the direct descendants, but setting options.recursive
will return
a flat list of all the files down the entire dependency chain.
If options.objects
is set, the returned list will be File
objects.
Returns an Array
of files that depend on the given file
.
By default, it will only return the direct ancestors, but adding options.recursive
will return a
flat list of all the files up the entire dependency chain.
If options.objects
is set, the returned list will be File
objects.
Returns a new Tree
object that is an effective clone of the original.
Removes any orphaned files from the graph. A file is considered orphaned if it has no path to any file marked as an entry.
If entries
is passed, (must be an Array
) then any files that cannot reach those files will
be removed from the graph. (essentially overrides the internal list of entries)
Each instance represents a file in the overall build. The location
is an absolute path, tree
is the tree that contains this particular file and entry
flags a file as an entry.
Entry files are uniquely handled, particularly when it comes to Tree#prune()
. Any files that do
not have a path to some entry file are considered orphaned, and will be pruned.
The absolute path to where this file exists on disk.
The current file type associated with this file. This value is used to determine what plugins/hooks need to be invoked at various stages.
NOTE: plugins can modify this value if their work changes the file type. (such as compiling
coffee
into js
)
This holds the current contents of the file. When first read, this property should be set, and subsequent changes to the source code should apply to this property.
NOTE: must be set by a plugin.
The absolute path to where this file should be written on disk.
NOTE: must be set by a plugin.
An internal flag that helps mako know when a particular file is currently being analyzed. (to prevent race conditions and duplicating efforts) There is currently no public use for this property.
A flag that helps mako know when a particular file has already been analyzed, so it doesn't
continuously analyze the same file during subsequent builds. Do not change this manually,
instead use File#dirty()
.
Short-hand for tree.isEntry(file.path)
.
Short-hand for tree.hasDependency(file.path, child)
.
Short-hand for tree.addDependency(file.path, child)
.
Short-hand for tree.removeDependency(file.path, child)
.
Short-hand for tree.dependenciesOf(file.path, options)
.
Short-hand for tree.dependantsOf(file.path, options)
.
Can be used by the prewrite
hook to mark a file as "dirty" so that it should be analyzed again.
For example, mako-stat will use this method whenever the modification time for a file has changed, which indicates to mako that analyze needs to be run again for this file.
Returns a new File
object that is an effective clone of the original.
FAQs
The build tree structure used internally by mako
The npm package mako-tree receives a total of 18 weekly downloads. As such, mako-tree popularity was classified as not popular.
We found that mako-tree demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.