Skip to content

Instantly share code, notes, and snippets.

View RapsIn4's full-sized avatar

Michael Ye RapsIn4

View GitHub Profile
@benvium
benvium / react-native-parse-xml-example.js
Last active June 4, 2020 05:22
Parse XML Example using React Native.xmldom is a pure JavaScript implementation of an XML Parser. I've added it to window so that browser modules that require it will work. Tested on iOS and Android.
/**
*
* Before use, type:
* ```
* npm install xmldom --save
* ```
*/
window.DOMParser = require('xmldom').DOMParser;
@staltz
staltz / introrx.md
Last active July 22, 2024 09:31
The introduction to Reactive Programming you've been missing