nativescript-nodeify icon indicating copy to clipboard operation
nativescript-nodeify copied to clipboard

Makes most npm packages compatible with NativeScript

Results 42 nativescript-nodeify issues
Sort by recently updated
recently updated
newest added

I would like to use `node-vibrant` is there a shim for `document` planned? https://github.com/akfish/node-vibrant/search?q=document&unscoped_q=document Currently, I'm running into the error: `Can't find variable: document` Code example: ``` import { Component,...

In my code i am using the moddule speedtest however i am getting the following error: `ERROR Error: Uncaught (in promise): Error: Could not find module 'https'. ` my code...

Thanks for making this awesome plugin! While trying to use it I ran into an issue where I found scoped packages are being ignored https://github.com/EddyVerbruggen/nativescript-nodeify/blob/master/patch-npm-packages.js#L213 I'm sure there must be...

For a {N} app I'm working on, I was hoping to be able to add support for Amazon's new service AppSync through their app-sync npm module: [https://github.com/awslabs/aws-mobile-appsync-sdk-js](url) I know nativescript-nodeify...

I am trying to use this plugin for running a Node-Opcua (https://github.com/node-opcua/node-opcua) client in my NativeScript App. I am getting the following error: > System.err: ReferenceError: process is not defined...

Just add plugin, add `import "nativescript-nodeify";` and `tns run android` ``` System.err: ReferenceError: XMLHttpRequest is not defined System.err: File: "file:///data/data/com.test/files/app/tns_modules/nativescript-nodeify/nodeify.js, line: 4, column: 30 ```

In our nativescript plugin we use: ``` import http = require('http'); import * as fsModule from 'file-system'; ``` In our app we want to use json-hash: ``` const nodify =...

To reproduce: * `rm -rf platforms/android` * `tns platform add android` * `tns build android` Here is the output from my terminal. Specifically note the error message at the end:...

I would like to use the `crypto-browserify` module in my code, which should theoretically be possible as this module is fully supported in the browser. Unfortunately, upon loading my app...