
WebPack
Farmwang
博采众长,兼收并蓄!
展开
-
WebPack helloword
原创 2018-11-22 20:44:52 · 220 阅读 · 0 评论 -
webpack js css分离
const ExtractTextPlugin = require("extract-text-webpack-plugin");const path = require("path");module.exports = { mode: "development", //打包为开发模式 entry: "./app/main.js", //入口文件,从项目根目录指定 ...原创 2018-12-19 13:02:49 · 718 阅读 · 0 评论 -
webpack flow
原创 2018-12-19 22:33:18 · 439 阅读 · 0 评论 -
webpack引入函数变量
test.jsvar x = 8;var y=8;var add = function () { return y + x;};module.exports.x = x;module.exports.y = y;module.exports.add = add;require('./magnificpopup/jquery.magnific-popup.min.js')...原创 2018-12-19 22:25:37 · 715 阅读 · 0 评论 -
webpack进入js函数
在js文件要引用的函数中将其作用域提升,在函数前添加window.window.AlertOK=AlertOK;var M={}; function AlertOK(msg) { M.dialog11 = jqueryAlert({ 'icon': '../img/right.png', 'content': msg, ...原创 2018-12-19 22:00:05 · 793 阅读 · 0 评论 -
webpack使用(4)之引入第三方JS库
一、script引入第三方库lodash不建议使用<script src="https://cdn.bootcss.com/lodash.js/4.17.10/lodash.min.js"></script>二、 npm 引入的方式测试使用webpack.providePlugin插件第一步:npm i --save lodash使用webp...转载 2018-11-27 18:22:37 · 6267 阅读 · 0 评论 -
module.exports
通过module.exports的方式暴露出来test.jsvar data = { 'xx': '11', ...};module.exports = exports = data;用到的jsvar test = require('./test.js'); //这边根据自己的路径var tt = test.data.xx;...原创 2018-11-27 17:15:40 · 787 阅读 · 0 评论 -
Webpack1 jquery
const path = require("path");module.exports = { entry: __dirname + "/app/main.js",//已多次提及的唯一入口文件 output: { path: __dirname + "/public",//打包后的文件存放的地方 filename: "bundle.js"//打包后输出文件的文件名...原创 2018-11-27 16:36:14 · 165 阅读 · 1 评论 -
webpack 引用 外部模块
原创 2018-11-27 15:32:40 · 1766 阅读 · 0 评论 -
JS exports
module.exports 是CMD规范的一个全局函数,功能是当前模块对外提供接口。require可以直接使用这个接口。export可以选择性地给其他模块暴露(提供)自己的属性和方法,供其他模块使用。echo.jsvar Echo = function(str){ console.log(str)}module.exports = Echoindex.js...原创 2018-11-27 15:29:20 · 6624 阅读 · 0 评论 -
webpack jquery
const path = require("path");module.exports = { entry: __dirname + "/app/main.js",//已多次提及的唯一入口文件 output: { path: __dirname + "/public",//打包后的文件存放的地方 filename: "bundle.js"//打包后输出文件的文件名...原创 2018-11-27 14:41:32 · 354 阅读 · 0 评论 -
NetCore WebAPI
using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Mvc;using System.Data;using System.Web;using Microsoft.AspNetCore.Http;...原创 2018-12-24 23:19:08 · 619 阅读 · 0 评论