1. 首页
  2. 考试认证
  3. 其它
  4. html scripts to array将HTML脚本源转换为JSON数组

html scripts to array将HTML脚本源转换为JSON数组

上传者: 2024-11-05 22:28:39上传 ZIP文件 4.95KB 热度 2次

html-scripts-to-array 用于提取 HTML 中的 script src 链接,并将其转换为 JSON 文件的 JavaScript 实现。安装:


npm install html-scripts-to-array

示例代码


var convert = require('html-scripts-to-array');

var files = convert.extract('index.html');

console.log(files); // ['file1.js', 'file2.js', 'file3.js']

convert.extractJSON('index.html', 'arrayOutput.json'); // 创建一个文件 'arrayOutput.json',内容为 ['file1.js', 'file2.js', 'file3.js']

用户评论