Code Monkey home page Code Monkey logo

Comments (9)

catamphetamine avatar catamphetamine commented on May 21, 2024

I don't understand what you are talking about.
Provide an example.

from universal-webpack.

raymondsze avatar raymondsze commented on May 21, 2024

The followings are server-side codes.

translations/index.js

import requireDir from 'require-directory';
export default requireDir(module); // This would be error if using bundled server.js, since it make use of fs to runtime load files.

getLocaleMessages.js

// get all translation message from build folder
import translations from './translations';

/**
 * Get all translated messages of a locale.
 * @param {string} locale - Locale.
 * @returns {{ locale: string, messages: Object }} - Object of locale and messages.
 */
function getLocaleMessages(locale) {
  const messages = translations[locale];
  return { locale, messages };
}

export default getLocaleMessages;

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 21, 2024

So, what you're saying is that translations/index.js does bundle all the required modules on the client, but does not on the server?
If that's the case, then open the compiled server-side bundle, find the line where compiled translations/index.js goes, and post the compiled source of translations/index.js.

from universal-webpack.

raymondsze avatar raymondsze commented on May 21, 2024

No, it is not the case. Maybe i provide a more simple example.
fs.readFile(path.resolve(__dirname, .....));
After bundled, the __dirname is changed, the path would be incorrect, so cannot read the correct file.
I am thinking of setting something like this in start up
global.SERVER_SRC_PATH = '.....';
then change the above to
fs.readFile(SERVER_SRC_PATH, .....));

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 21, 2024

So, you're saying that Webpack substitutes __dirname for client-side builds but doesn't do so for server-side builds?

from universal-webpack.

raymondsze avatar raymondsze commented on May 21, 2024

My client side would not run those codes. After webpack bundled, I found the server side __dirname always equal to '/', but it could be printed correctly in startup file which is not bundled by webpack.

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 21, 2024

My client side would not run those codes.

Then you can move React rendering to a separate service and that would solve your issue
https://github.com/halt-hammerzeit/universal-webpack#separate-react-rendering-service-from-the-main-code

After webpack bundled, I found the server side __dirname always equal to '/'

Then that's what Webpack does for __dirname variable

from universal-webpack.

raymondsze avatar raymondsze commented on May 21, 2024

o.... My bad. Found solution by setting this option to webpack.
node: {
__dirname: true
}
webpack/webpack#1599

from universal-webpack.

catamphetamine avatar catamphetamine commented on May 21, 2024

(this workaround is now part of the library since several people requested it)
#30

from universal-webpack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.