vx_tool_node/lib.rs
1//! Node.js tool support for vx
2
3use vx_core::VxPlugin;
4
5mod node_plugin;
6mod node_tool;
7
8pub use node_plugin::NodePlugin;
9pub use node_tool::{NodeTool, NpmTool, NpxTool};
10
11/// Create a new Node.js plugin instance
12pub fn create_plugin() -> Box<dyn VxPlugin> {
13 Box::new(NodePlugin)
14}