Node.js

Hack

Add new extensions to require()

You can add new extensions to require() by extending require.extensions.

For a XML example:

// Add .xml for require()
require.extensions['.xml'] = (module, filename) => {
    const fs = require('fs')
    const xml2js = require('xml2js')

    module.exports = (callback) => {
        // Read required file.
        fs.readFile(filename, 'utf8', (err, data) => {
            if (err) {
                callback(err)
                return
            }
            // Parse it.
            xml2js.parseString(data, (err, result) => {
                callback(null, result)
            })
        })
    }
}

If the content of hello.xml is following:

<?xml version="1.0" encoding="UTF-8"?>
<foo>
    <bar>baz</bar>
    <qux />
</foo>

You can read and parse it through require():

require('./hello')((err, xml) {
    if (err)
        throw err;
    console.log(err);
})

It prints { foo: { bar: [ 'baz' ], qux: [ '' ] } }.


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow