React component AMD bundling with Webpack for Require.jsLoop inside React JSXProgrammatically navigate using react routerNPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackError using component done with react,redux and react-redux and build with webpack in react applicationUsing Webpack to include React from CDN, but not ReactDOMHow to load async react components without Webpack imports with SSR and RR4React standalone bundle without react library insidereact-universal-component with webpack-flush-chunks: initial css loadWebpack css issue, missing bundle.cssImport React and ReactDOM in Polymer 3 - module is undefined
In the movie Harry Potter and the Order or the Phoenix, why didn't Mr. Filch succeed to open the Room of Requirement if it's what he needed?
How is the return type of a ternary operator determined?
Whats the name of this projection?
What can make Linux unresponsive for minutes when browsing certain websites?
"How do you solve a problem like Maria?"
How to draw a flow chart?
Unexpected route on a flight from USA to Europe
Traveling from Germany to other countries by train?
Why couldn't soldiers sight their own weapons without officers' orders?
Did WWII Japanese soldiers engage in cannibalism of their enemies?
Scripting a Maintenance Plan in SQL Server Express
Word or idiom defining something barely functional
What is the resistivity of copper at 3 kelvin?
Was there ever a difference between 'volo' and 'volo'?
Why do private jets such as Gulfstream fly higher than other civilian jets?
Our group keeps dying during the Lost Mine of Phandelver campaign. What are we doing wrong?
WordCloud: do not eliminate duplicates
What was the first multiprocessor x86 motherboard?
Why are the inside diameters of some pipe larger than the stated size?
Should I take out a personal loan to pay off credit card debt?
Secure my password from unsafe servers
What is the German idiom or expression for when someone is being hypocritical against their own teachings?
Purchased new computer from DELL with pre-installed Ubuntu. Won't boot. Should assume its an error from DELL?
Is multiplication of real numbers uniquely defined as being distributive over addition?
React component AMD bundling with Webpack for Require.js
Loop inside React JSXProgrammatically navigate using react routerNPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackError using component done with react,redux and react-redux and build with webpack in react applicationUsing Webpack to include React from CDN, but not ReactDOMHow to load async react components without Webpack imports with SSR and RR4React standalone bundle without react library insidereact-universal-component with webpack-flush-chunks: initial css loadWebpack css issue, missing bundle.cssImport React and ReactDOM in Polymer 3 - module is undefined
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Due to some reason, we want to load React component on Backbone view (with Require.js). This React component is being bundled using Webpack 4.x.
We have enable AMD/UMD mode during bundling in Webpack config.
...
...
module.exports = {
entry:
componentName: ['./components/componentName/index.js']
,
amd:
componentName: true
,
output:
path: path.resolve(__dirname, './componentName'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'componentName',
umdNamedDefine: true
,
externals:
'react': 'react',
'react-dom': 'react-dom',
'react-dom-server': 'react-dom-server'
,
...
Now, we are trying to use bundled React component in Backbone+Require.js app where we are loading React and ReactDOM (UMD enabled) as below
define([
'jquery',
'underscore',
'backbone',
'react',
'react-dom',
'componentName'
], function($, _, Backbone, React, ReactDOM, componentName)
...
render: function()
console.log(React, ReactDOM, componentName)
...
);
Here componentName always comes as undefined
whereas React and ReactDOM are loading correctly. Can anyone help to understand am I missing something here?
reactjs webpack backbone.js require
add a comment |
Due to some reason, we want to load React component on Backbone view (with Require.js). This React component is being bundled using Webpack 4.x.
We have enable AMD/UMD mode during bundling in Webpack config.
...
...
module.exports = {
entry:
componentName: ['./components/componentName/index.js']
,
amd:
componentName: true
,
output:
path: path.resolve(__dirname, './componentName'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'componentName',
umdNamedDefine: true
,
externals:
'react': 'react',
'react-dom': 'react-dom',
'react-dom-server': 'react-dom-server'
,
...
Now, we are trying to use bundled React component in Backbone+Require.js app where we are loading React and ReactDOM (UMD enabled) as below
define([
'jquery',
'underscore',
'backbone',
'react',
'react-dom',
'componentName'
], function($, _, Backbone, React, ReactDOM, componentName)
...
render: function()
console.log(React, ReactDOM, componentName)
...
);
Here componentName always comes as undefined
whereas React and ReactDOM are loading correctly. Can anyone help to understand am I missing something here?
reactjs webpack backbone.js require
add a comment |
Due to some reason, we want to load React component on Backbone view (with Require.js). This React component is being bundled using Webpack 4.x.
We have enable AMD/UMD mode during bundling in Webpack config.
...
...
module.exports = {
entry:
componentName: ['./components/componentName/index.js']
,
amd:
componentName: true
,
output:
path: path.resolve(__dirname, './componentName'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'componentName',
umdNamedDefine: true
,
externals:
'react': 'react',
'react-dom': 'react-dom',
'react-dom-server': 'react-dom-server'
,
...
Now, we are trying to use bundled React component in Backbone+Require.js app where we are loading React and ReactDOM (UMD enabled) as below
define([
'jquery',
'underscore',
'backbone',
'react',
'react-dom',
'componentName'
], function($, _, Backbone, React, ReactDOM, componentName)
...
render: function()
console.log(React, ReactDOM, componentName)
...
);
Here componentName always comes as undefined
whereas React and ReactDOM are loading correctly. Can anyone help to understand am I missing something here?
reactjs webpack backbone.js require
Due to some reason, we want to load React component on Backbone view (with Require.js). This React component is being bundled using Webpack 4.x.
We have enable AMD/UMD mode during bundling in Webpack config.
...
...
module.exports = {
entry:
componentName: ['./components/componentName/index.js']
,
amd:
componentName: true
,
output:
path: path.resolve(__dirname, './componentName'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'componentName',
umdNamedDefine: true
,
externals:
'react': 'react',
'react-dom': 'react-dom',
'react-dom-server': 'react-dom-server'
,
...
Now, we are trying to use bundled React component in Backbone+Require.js app where we are loading React and ReactDOM (UMD enabled) as below
define([
'jquery',
'underscore',
'backbone',
'react',
'react-dom',
'componentName'
], function($, _, Backbone, React, ReactDOM, componentName)
...
render: function()
console.log(React, ReactDOM, componentName)
...
);
Here componentName always comes as undefined
whereas React and ReactDOM are loading correctly. Can anyone help to understand am I missing something here?
reactjs webpack backbone.js require
reactjs webpack backbone.js require
edited Mar 27 at 9:59
Ashwin Hegde
asked Mar 27 at 5:54
Ashwin HegdeAshwin Hegde
8384 gold badges14 silver badges42 bronze badges
8384 gold badges14 silver badges42 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370630%2freact-component-amd-bundling-with-webpack-for-require-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370630%2freact-component-amd-bundling-with-webpack-for-require-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown