gpt4 book ai didi

node.js - 如何使用浏览器特定的 vanilla JS 库来响应依赖项

转载 作者:太空宇宙 更新时间:2023-11-03 23:58:37 25 4
gpt4 key购买 nike

js/reactjs 产品与 janus webrtc 网关交互。据我所知,我正在尝试使用 meetecho janus-gateway 源代码中提供的 janus.js 库:

A:这个库会检查浏览器是否与Janus兼容。B:这个库由核心团队维护并保持最新。

所以我知道我已经不得不放弃 JSX 并使用 jQuery 或标准 JavaScript 来操作 React 提供的空值。

我只需要知道如何导入旨在通过 html 中的脚本标签导入的脚本,脚本本身也具有依赖关系。最好我尝试使用 stub index.html 文件不在网站的每个页面上加载它。该项目变得相当庞大和繁重。

最坏的情况是,我只需要使用其他 API 之一(例如 meetecho 的 Restful API)并自己检查浏览器兼容性。但如果不需要的话,我宁愿不重复所有这些工作。而且也不必在原型(prototype)设计阶段的早期就尝试弄清楚 webrtc 连接如何工作。

首先尝试让 jQuery 依赖项发挥作用:

//import $ from '../Api/janus/jquery.min.js';

//import $ from 'jquery';
//import jQuery from 'jquery';
//import adapter from 'webrtc-adapter';
const jQuery = require('jquery');

import {Janus as JanusAPI} from "../Api/janus/janus.js";

错误日志:

./src/Api/janus/janus.js
Line 55: 'error' is not defined no-undef
Line 56: 'error' is not defined no-undef
Line 57: 'error' is not defined no-undef
Line 98: 'adapter' is not defined no-undef
Line 161: 'jQuery' is not defined no-undef
Line 167: 'adapter' is not defined no-undef

Search for the keywords to learn more about each error.

最佳答案

嗨,我想我会回答我自己的帖子,因为我已经更进一步了。

如果您希望 npm 将 Janus 识别为模块,这篇文档包含基础知识:

https://janus.conf.meetecho.com/docs/js-modules.html

您可能需要修改 janus-gateway npm 项目的入口点,以在 npm rollup 汇总模块之前导入所需的依赖项。

然后,您必须修改汇总配置以在模块中包含依赖项,或者在导入模块的项目中查找它们,可以在此处找到有关如何使用汇总执行此操作的良好起点:

https://engineering.mixmax.com/blog/rollup-externals

我的 module.js 来自 janus-gateway/npm 项目

/* eslint-disable */
/*
* Module shim for rollup.js to work with.
* Simply re-export Janus from janus.js, the real 'magic' is in the rollup config.
*
* Since this counts as 'autogenerated' code, ESLint is instructed to ignore the contents of this file when linting your project.
*/
//var adapter = require('webrtc-adapter');
import adapter from 'webrtc-adapter';

@JANUS_CODE@

export default Janus;

和 rollup.config.js

import resolve from 'rollup-plugin-node-resolve';
import commonJS from 'rollup-plugin-commonjs';

import replace from 'rollup-plugin-replace';
import * as fs from 'fs';

export default {
name: 'Janus',
input: 'module.js',
output: {
strict: false
},
plugins: [
resolve(),
commonJS({
// namedExports: {
//
// }
include: 'node_modules/**'
}),
replace({
JANUS_CODE: fs.readFileSync('../html/janus.js', 'utf-8'),
delimiters: ['@','@'],
includes: 'module.js'
})
]
};

尚未使用此方法使用 Janus 实现任何 UI,但我至少已经获得了使用默认依赖项进行初始化的 API,并且可以创建/销毁 session 并将插件附加到所述 session 。

希望这有帮助:)

关于node.js - 如何使用浏览器特定的 vanilla JS 库来响应依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55847220/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com