如何从npm生成普通的javascript

时间:2015-07-13 10:25:23

标签: javascript npm bower generated

我只想准备好使用此存储库https://github.com/airbrake/airbrake-js

中编译的普通javascript文件

如何制作?它让我发疯,我不会想要任何凉亭,无论如何还是其他 - 只需一个普通的javascript文件

BTW :文件" https://raw.githubusercontent.com/airbrake/airbrake-js/master/dist/client.js"是我想要的东西,因为还有一个" 要求(' ./ internal / compat'); &#34 ;在里面; - )

问候

3 个答案:

答案 0 :(得分:1)

使用github页面上提供的树系统导航到您想要的文件,然后单击视图按钮然后单击原始以获取该文件的源代码,而不包含所有行号。

答案 1 :(得分:1)

获取/下载/复制这两个文件并将其包含在HTML中:

https://raw.githubusercontent.com/airbrake/airbrake-js/master/dist/client.js https://raw.githubusercontent.com/airbrake/airbrake-js/master/dist/instrumentation/jquery.js

<script src="js/airbrake-js/client.js"></script>
<script src="js/airbrake-js/instrumentation/jquery.js"></script>

请同时查看legacy example

添加文件后,也添加此脚本:

var airbrake = new airbrakeJs.Client({projectId: 1, projectKey: 'abc'});
if (window.jQuery) {
  airbrakeJs.instrumentation.jquery(airbrake, jQuery);
}

try {
  throw new Error('hello from airbrake-js');
} catch (err) {
  airbrake.push(err);
}

答案 2 :(得分:0)

如果您要在浏览器中使用此代码,则预计您将使用browserify:http://browserify.org/

Browsers don't have the require method defined, but Node.js does. With Browserify you can write code that uses require in the same way that you would use it in Node.