文件名称:my-simple-npm-project-with-browserify
文件大小:17KB
文件格式:ZIP
更新时间:2024-06-05 16:28:47
JavaScript
描述 在我的Javascript项目中通过Browserify使用NPM 作者 纳尔酒吧 日期 2018年5月 这是基于以下博客: 步骤1: 使用“ npm init”命令将在此文件夹中创建我的初始package.json文件 第2步: 安装两个模块: npm install --save arithmetic npm install --save repeat-string 这将更新package.json并使用新模块添加文件夹“ node_modules” 第三步: 根据我安装的软件包,使用一些js代码创建index.js ...例如 var repeat = require("repeat-string"); console.log(repeat("hey", 100)); [removed](repeat("hey", 10)); 第四步: 运行inde
【文件预览】:
my-simple-npm-project-with-browserify-master
----package.json(386B)
----package-lock.json(766B)
----index.js(106B)
----node_modules()
--------is-numeric()
--------repeat-string()
--------arithmetic()
----debug.log(216B)
----README.md(2KB)
----index.html(59B)
----bundle.js(2KB)