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

https://github.com/maxbeier/parcel-plugin-raw-xml

Parcel plugin for loading the raw content of an xml file as a string
https://github.com/maxbeier/parcel-plugin-raw-xml

Last synced: over 1 year ago
JSON representation

Parcel plugin for loading the raw content of an xml file as a string

Awesome Lists containing this project

README

          

# parcel-plugin-raw-xml

> Parcel plugin for loading the raw content of an xml file as a string

## Installation

```sh
npm install --save-dev parcel-plugin-raw-xml
```

## Example

- `example.xml`

```xml


lorem ipsum

```

- `index.js`

```js
import xml from './example.xml';

console.log(xml);
```