Ad
Firebase Cloud Functions: Can You Call Functions From Dll?
I know Bridge.Net can be used in node js and call functions from a dll. Is this possible to do use this with cloud functions? Would my local dll be uploaded if it is in the same folder of my functions?
Ad
Answer
Cloud Functions server instances run nodejs in a Linux environment. If you have code built for some other OS or runtime (such as Windows, or a .net assembly), it won't work. The only code that you'll be able to run is either JavaScript or a native executable built for Linux x86.
Ad
source: stackoverflow.com
Related Questions
- → Function Undefined in Axios promise
- → React formatting dates with momentjs server side
- → Using ReactJs, How do I update my form fields when my parent object sent in from props changes?
- → Visual Studio 2012 Express: Browser returning 500 status trying to download jsx file
- → AngularJS directive: "templateUrl" doesn't work while "template" works
- → how to add cannonical tag for ASPX .NET page
- → Javascript Paypal slider string suffix
- → JavaScript in MVC 5 not being read?
- → Selecting an element by its attribute when it has a colon in its name
- → Function works for NON dynamically loaded images
- → URL routing requires /Home/Page?page=1 instead of /Home/Page/1
- → There are "gaps" between rows in my masonry cards
- → creating sef links and changing plus sign (+) with dash (-)
Ad