Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webpack warnings when running Mongoose for browser #6705

Closed
ianpaschal opened this issue Jul 10, 2018 · 8 comments
Closed

Webpack warnings when running Mongoose for browser #6705

ianpaschal opened this issue Jul 10, 2018 · 8 comments
Milestone

Comments

@ianpaschal
Copy link

ianpaschal commented Jul 10, 2018

Do you want to request a feature or report a bug?

Bug

What is the current behavior?

When using the browser version of Mongoose as described here, Webpack generates several warnings:

WARNING in ./node_modules/mongoose/lib/drivers/index.js
10:13-49 Critical dependency: the request of a dependency is an expression
 @ ./node_modules/mongoose/lib/drivers/index.js
 @ ./node_modules/mongoose/lib/schema.js
 @ ./node_modules/mongoose/lib/browser.js
 @ ./node_modules/mongoose/browser.js
 @ ./src/store/index.js
 @ ./src/client.js
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/client.js

WARNING in ./node_modules/require_optional/index.js
82:18-42 Critical dependency: the request of a dependency is an expression
 @ ./node_modules/require_optional/index.js
 @ ./node_modules/mongodb-core/index.js
 @ ./node_modules/mongodb/index.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/binary.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/index.js
 @ ./node_modules/mongoose/lib/drivers/index.js
 @ ./node_modules/mongoose/lib/schema.js
 @ ./node_modules/mongoose/lib/browser.js
 @ ./node_modules/mongoose/browser.js
 @ ./src/store/index.js
 @ ./src/client.js
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/client.js

WARNING in ./node_modules/require_optional/index.js
90:20-44 Critical dependency: the request of a dependency is an expression
 @ ./node_modules/require_optional/index.js
 @ ./node_modules/mongodb-core/index.js
 @ ./node_modules/mongodb/index.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/binary.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/index.js
 @ ./node_modules/mongoose/lib/drivers/index.js
 @ ./node_modules/mongoose/lib/schema.js
 @ ./node_modules/mongoose/lib/browser.js
 @ ./node_modules/mongoose/browser.js
 @ ./src/store/index.js
 @ ./src/client.js
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/client.js

WARNING in ./node_modules/require_optional/index.js
97:35-67 Critical dependency: the request of a dependency is an expression
 @ ./node_modules/require_optional/index.js
 @ ./node_modules/mongodb-core/index.js
 @ ./node_modules/mongodb/index.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/binary.js
 @ ./node_modules/mongoose/lib/drivers/node-mongodb-native/index.js
 @ ./node_modules/mongoose/lib/drivers/index.js
 @ ./node_modules/mongoose/lib/schema.js
 @ ./node_modules/mongoose/lib/browser.js
 @ ./node_modules/mongoose/browser.js
 @ ./src/store/index.js
 @ ./src/client.js
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/client.js

As far as I know, there is not a way to suppress these annoying warnings as Webpack devs insist they are important issues which module authors should address.

If the current behavior is a bug, please provide the steps to reproduce.

  • Create a project with Webpack (I was using the vue-cli).
  • Extend the Webpack config as described here.
  • Import/require "mongoose/browser" anywhere in the app.

For completeness, here's my full config:

const path = require( "path" );
const webpack = require( "webpack" );

module.exports = {
	entry: "./src/client.js",
	output: {
		path: path.resolve( __dirname, "./dist" ),
		publicPath: "/dist/",
		filename: "build.js"
	},
	module: {
		rules: [
			{
				test: /\.css$/,
				use: [
					"vue-style-loader",
					"css-loader"
				],
			},
			{
				test: /\.vue$/,
				loader: "vue-loader",
				options: {
					loaders: {
					}
					// other vue-loader options go here
				}
			},
			{
				test: /\.js$/,
				loader: "babel-loader",
				exclude: /node_modules/
			},
			{
				test: /\.(png|jpg|gif|svg)$/,
				loader: "file-loader",
				options: {
					name: "[name].[ext]?[hash]"
				}
			}
		]
	},
	node: {
		// Replace these Node.js native modules with empty objects, Mongoose's
		// browser library does not use them.
		// See https://webpack.js.org/configuration/node/
		dns: "empty",
		fs: "empty",
		"module": "empty",
		net: "empty",
		tls: "empty"
	},
	resolve: {
		alias: {
			"vue$": "vue/dist/vue.esm.js",
			"@": path.join( __dirname, "src" )
		},
		extensions: [ "*", ".js", ".vue", ".json" ]
	},
	devServer: {
		historyApiFallback: true,
		noInfo: true,
		overlay: true
	},
	performance: {
		hints: false
	},
	devtool: "#eval-source-map"
};

if ( process.env.NODE_ENV === "production" ) {
	module.exports.devtool = "#source-map";
	// http://vue-loader.vuejs.org/en/workflow/production.html
	module.exports.plugins = ( module.exports.plugins || [] ).concat( [
		new webpack.DefinePlugin({
			"process.env": {
				NODE_ENV: "\"production\""
			}
		}),
		new webpack.optimize.UglifyJsPlugin({
			sourceMap: true,
			compress: {
				warnings: false
			}
		}),
		new webpack.LoaderOptionsPlugin({
			minimize: true
		})
	] );
}

The import is simply:

import mongoose from "mongoose/browser";

What is the expected behavior?

  • Webpack bundles without errors or warnings.

Please mention your node.js, mongoose and MongoDB version.

  • Node: 8.11.3
  • Mongoose: 5.2.2
  • MongoDB: 4.0.0
  • Webpack: 3.6.0
@lineus lineus changed the title Webpack errors when running Mongoose for browser Webpack warnings when running Mongoose for browser Jul 12, 2018
@vkarpov15 vkarpov15 added this to the 5.2.4 milestone Jul 14, 2018
@vkarpov15
Copy link
Collaborator

Will look into fixing these warnings. They are just warnings and shouldn't impact mongoose functionality.

@ianpaschal
Copy link
Author

Thanks!

I know they're just warnings but it's quite annoying to not get a clean build. Both in terminal and in web console they pollute the output making it difficult to work and to read actually relevant output.

Appreciate you looking into it.

@vkarpov15
Copy link
Collaborator

Fixed with #6771

@vkarpov15
Copy link
Collaborator

Fix will be in 5.2.6 that will ship next Monday 👍

@ianpaschal
Copy link
Author

Thank you! Looking forward to it.

@ksloan
Copy link

ksloan commented Jul 31, 2018

FYI: This also fixed a problem we had loading the mongoose driver with storybook -- it was loading node-mongodb-native before. Fixed now, thanks!

@vkarpov15
Copy link
Collaborator

Great. This should also make Mongoose bundles much smaller because it isn't loading the MongoDB driver anymore.

@lewislbr
Copy link

I just had this issue and solved it by adding to the Webpack config:

externals: [
  { mongoose: 'commonjs mongoose' },
]

@Automattic Automattic locked as resolved and limited conversation to collaborators Aug 28, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants