如何在 webpack encore 文件之外使用节点模块?

Posted

技术标签:

【中文标题】如何在 webpack encore 文件之外使用节点模块?【英文标题】:How to use node modules outside of webpack encore files? 【发布时间】:2021-10-15 14:03:10 【问题描述】:

我已经开始在我的 Symfony 5 网络应用程序中使用 webpack encore,但还没有完全弄清楚。 我想在 webpack encore 文件之外使用节点模块,但我找不到这样做的方法。

例如,我已经安装了 Datatables,我想在 public/assets/js 目录内的 javascript 文件中使用它,但是当我尝试时,我得到了$(...).DataTable is not a function

在我的 app.js 中,我确实导入了我需要的所有模块:

import 'select2';
import 'parsleyjs';
import 'datatables';

这是我的 webpack.config.js

const Encore = require('@symfony/webpack-encore');

// Manually configure the runtime environment if not already configured yet by the "encore" command.
// It's useful when you use tools that rely on webpack.config.js file.
if (!Encore.isRuntimeEnvironmentConfigured()) 
    Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');


Encore
    // directory where compiled assets will be stored
    .setOutputPath('public/build/')
    // public path used by the web server to access the output path
    .setPublicPath('/build')
    // only needed for CDN's or sub-directory deploy
    //.setManifestKeyPrefix('build/')

    /*
     * ENTRY CONFIG
     *
     * Each entry will result in one JavaScript file (e.g. app.js)
     * and one CSS file (e.g. app.css) if your JavaScript imports CSS.
     */
    .addEntry('app', './assets/app.js')

    // enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)
    .enableStimulusBridge('./assets/controllers.json')

    // When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
    .splitEntryChunks()

    // will require an extra script tag for runtime.js
    // but, you probably want this, unless you're building a single-page app
    // .enableSingleRuntimeChunk()
    .disableSingleRuntimeChunk()

    /*
     * FEATURE CONFIG
     *
     * Enable & configure other features below. For a full
     * list of features, see:
     * https://symfony.com/doc/current/frontend.html#adding-more-features
     */
    .cleanupOutputBeforeBuild()
    .enableBuildNotifications()
    .enableSourceMaps(!Encore.isProduction())
    // enables hashed filenames (e.g. app.abc123.css)
    .enableVersioning(Encore.isProduction())

    .configureBabel((config) => 
        config.plugins.push('@babel/plugin-proposal-class-properties');
    )

    // enables @babel/preset-env polyfills
    .configureBabelPresetEnv((config) => 
        config.useBuiltIns = 'usage';
        config.corejs = 3;
    )

    // enables Sass/SCSS support
    //.enableSassLoader()

    // uncomment if you use TypeScript
    //.enableTypeScriptLoader()

    // uncomment if you use React
    //.enableReactPreset()

    // uncomment to get integrity="..." attributes on your script & link tags
    // requires WebpackEncoreBundle 1.4 or higher
    //.enableIntegrityHashes(Encore.isProduction())

    // uncomment if you're having problems with a jQuery plugin
    .autoProvidejQuery()
;

module.exports = Encore.getWebpackConfig();

【问题讨论】:

【参考方案1】:

对于遇到相同问题的任何人,这是我所做的:

我在 app.js 中将 import $ from "jquery"; 替换为 global.$ = global.jQuery = require('jquery');

【讨论】:

以上是关于如何在 webpack encore 文件之外使用节点模块?的主要内容,如果未能解决你的问题,请参考以下文章

Symfony Webpack Encore:从Bundle导入.js

如何使用Webpack Encore在Heroku上编译资产?

如何使用 Webpack Encore 在 Heroku 上编译资产?

Webpack 5 (Webpack Encore):如何在同一页面上运行多个 webpack 实例并避免任何冲突?

我无法通过 symfony/webpack-encore 使用 Jest 和 Vuejs 运行测试

在Symfony 4中使用WebPack Encore定义后无法识别JavaScript对象