Coder Social home page Coder Social logo

Comments (3)

jeffijoe avatar jeffijoe commented on June 2, 2024

I haven't used NextJS myself but you mentioned a build system? I take it you are trying to bundle something, and you are getting this error because the bundler is finding that load-module-native.js contains an import() call which can't be statically analyzed.

In that case, you need to tell your build system to use the browser build of Awilix as it does not contain references to any of the loadModules code.

from awilix.

nhat-nguyen avatar nhat-nguyen commented on June 2, 2024

Thank you for your prompt response!

I did a bit research and next.js just uses webpack as its bundler. So this issue comes down to how to configure webpack to use the browser version (lib/awilix.browser.js) like you suggested.

Some googling around and I came across this article that helped: https://stackoverflow.com/questions/73195049/is-there-a-webpack-config-option-to-override-resolve-mainfields-for-specific-i

I managed to modify it a little bit to work with the next.js config. Pasting it here in case other people may run into the same issue:

/** @type {import('next').NextConfig} */

// `mainFields`: which fields you want to prioritize in the order
function resolvePackage(packageName, mainFields) {
  // Read the json of the npm package in question.
  const json = require(`${packageName}/package.json`);

  const matchedFile = mainFields.find((x) => json.hasOwnProperty(x));

  if (!mainFields) {
    throw new Error(`No matching file found for ${packageName}`);
  }

  return `${packageName}/${json[matchedFile]}`;
}

const nextConfig = {
  webpack(config, options) {
    config.resolve.alias['awilix'] = resolvePackage('awilix', ['browser']);
    return config;
  },
};

module.exports = nextConfig;

It's still quite strange though that when I created a barebone next.js app, the warnings would not show up. But at least there's a workaround for it. 😄

Thanks again for the help! I have been searching for a dependency injection library that works with next.js and awilix is the only one that works. Other libraries that rely on reflect-metadata simply do not work because there isn't a defined entry point to import reflect-metadata.

from awilix.

jeffijoe avatar jeffijoe commented on June 2, 2024

Interesting - Webpack should have used the browser build by default, unless Next somehow changes that. Glad you figured it out.

from awilix.

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.