Webpack: how to package the node. js backend project, webpacknode. js

Source: Internet
Author: User

Webpack: how to package the node. js backend project, webpacknode. js

This article describes how to package a node. js backend project in webpack. The details are as follows:

Install dependency

Copy codeThe Code is as follows:
Npm install -- save-dev webpack babel-loader babel-preset-es2015 babel-preset-stage-0

Webpack Configuration

Webpack. config. js

'use strict';const webpack = require('webpack');let externals = _externals();module.exports = {  entry: {    app: './app.js',  },  target: 'node',  output: {    path: './build',    filename: '[name].js'  },  resolve: {    extensions: ['', '.js']  },  externals: externals,  node: {    console: true,    global: true,    process: true,    Buffer: true,    __filename: true,    __dirname: true,    setImmediate: true  },  module: {    loaders: [      {        test: /\.js$/,        loader: 'babel',        query: {          presets: ['es2015','stage-0']        },        exclude: /node_modules/      }    ]  },  plugins: [    new webpack.optimize.UglifyJsPlugin()  ]};function _externals() {  let manifest = require('./package.json');  let dependencies = manifest.dependencies;  let externals = {};  for (let p in dependencies) {    externals[p] = 'commonjs ' + p;  }  return externals;}

Project directory

+controller+models+routes+service+test+util-app.js-config.json-gulpfile.js-models.js-package.json-pm2.json-webpack.config.js

Github: https://github.com/ymyang/chain-tree

The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.