An open API service indexing awesome lists of open source software.

https://github.com/matmill5/mismo

Utilities for working with Mortgage Industry Standards Maintenance Organization (MISMO) files
https://github.com/matmill5/mismo

Last synced: about 2 months ago
JSON representation

Utilities for working with Mortgage Industry Standards Maintenance Organization (MISMO) files

Awesome Lists containing this project

README

        

# MISMO

Utilities for working with Mortgage Industry Standards Maintenance Organization (MISMO) XML files.

## Installation

pnpm add @morfi-technologies/mismo

## Usage - MISMO Validation

```ts
import { validateMISMO } from '@morfi-technologies/mismo';

const result = validateMISMO({
mismo: fs.readFileSync("your-mismo-file.xml"), // File Buffer or String
options: {
version: '3.4' // MISMO Version
}
});
```
## Usage - NextJS

To use with NextJS, you'll need to configure the next.config.js file as follows

```
const nextConfig = {
serverExternalPackages: ['libxmljs', 'path', 'fs', 'url'], // external dependencies,
...config
}

```