Поиск…


Добавьте новые расширения, требующие ()

Вы можете добавить новые расширения для require() путем расширения require.extensions .

Пример XML :

// 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)
            })
        })
    }
}

Если содержимое hello.xml следующему:

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

Вы можете прочитать и проанализировать его с помощью require() :

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

Он печатает { foo: { bar: [ 'baz' ], qux: [ '' ] } } .



Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow