Git Product home page Git Product logo

Comments (2)

totherik avatar totherik commented on July 22, 2024

Hey @napejs, unfortunately, the i18next node wrapper breaks the convention of using a factory method to generate middleware, but you can use that to your advantage to do configuration. One option is to create a small wrapper to handle this for you (note that I'm using shortstop) to resolve the file path for me) such that your configuration and registration can all happen together.

// middleware/i18next.js
'use strict';

var i18next = require('i18next');

module.exports = function (config) {
    i18next.init(config);
    return i18next.handle;
};
{
    "middleware": {
        "i18n": {
            "enabled": true,
            "priority": 10,
            "module": {
                "name": "path:./middleware/i18next",
                "arguments": [ { /* i18next config */ } ]
            }
        }
    }
}

Finally, unless you're building on express older than 3.0, you don't need registerAppHelper as dynamicHelpers were removed in express 3.0 and that's what i18next uses to do registration. Hope that helps.

from meddleware.

napejs avatar napejs commented on July 22, 2024

Yes it does. Fantastic. Thank you very much.

from meddleware.

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.