我如何使用特定于浏览器的 vanilla JS 库来对依赖项做出反应
How do I use a browser specific vanilla JS library in react with dependancies
js/reactjs 与 janus webrtc 网关接口的产品。据我所知,我正在尝试使用 meetecho janus-gateway 源代码中提供的 janus.js 库:
A:这个库会检查浏览器是否兼容Janus。
B: 这个库由核心团队维护并保持最新。
所以我知道我已经不得不放弃 JSX 并使用 jQuery 或标准 JavaScript 来操作 react 提供的空值。
我只需要知道如何导入设计为通过 html 中的脚本标签导入的脚本,它本身也具有依赖性。我最好尝试使用存根 index.html 文件不在网站的每个页面上加载它。该项目变得越来越大和沉重。
最坏的情况就是最坏的情况我只需要使用其他 API 之一(例如 meetecho 的 restful API)并自己检查浏览器兼容性。但如果没有必要,我宁愿不重复所有这些工作。而且也不必在原型设计阶段的早期尝试弄清楚 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.
嗨,我想我会回答我自己的问题 post,因为我已经深入了解了。
如果你想让 npm 将 Janus 识别为一个模块,这篇文档有基础知识:
https://janus.conf.meetecho.com/docs/js-modules.html
您可能需要修改 janus-gateway npm 项目的实体点以在 npm rollup 汇总模块之前导入所需的依赖项。
然后您必须修改 rollup 配置以在模块中包含依赖项或在导入模块的项目中查找它们,可以在此处找到有关如何使用 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 来初始化默认依赖,并且可以 create/destroy 会话和将插件附加到所述会话。
希望这对您有所帮助:)
js/reactjs 与 janus webrtc 网关接口的产品。据我所知,我正在尝试使用 meetecho janus-gateway 源代码中提供的 janus.js 库:
A:这个库会检查浏览器是否兼容Janus。 B: 这个库由核心团队维护并保持最新。
所以我知道我已经不得不放弃 JSX 并使用 jQuery 或标准 JavaScript 来操作 react 提供的空值。
我只需要知道如何导入设计为通过 html 中的脚本标签导入的脚本,它本身也具有依赖性。我最好尝试使用存根 index.html 文件不在网站的每个页面上加载它。该项目变得越来越大和沉重。
最坏的情况就是最坏的情况我只需要使用其他 API 之一(例如 meetecho 的 restful API)并自己检查浏览器兼容性。但如果没有必要,我宁愿不重复所有这些工作。而且也不必在原型设计阶段的早期尝试弄清楚 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.
嗨,我想我会回答我自己的问题 post,因为我已经深入了解了。
如果你想让 npm 将 Janus 识别为一个模块,这篇文档有基础知识:
https://janus.conf.meetecho.com/docs/js-modules.html
您可能需要修改 janus-gateway npm 项目的实体点以在 npm rollup 汇总模块之前导入所需的依赖项。
然后您必须修改 rollup 配置以在模块中包含依赖项或在导入模块的项目中查找它们,可以在此处找到有关如何使用 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 来初始化默认依赖,并且可以 create/destroy 会话和将插件附加到所述会话。
希望这对您有所帮助:)