Fcall
fcall, call any remote function in JavaScript/TypeScript, without any installation/configurations with npm/yarn/bun/deno
Install / Use
/learn @lidangzzz/FcallREADME
fcall
fcall, fetch and call any remote hot functions, anywhere, anytime, without installations or configurations.
Installation
If you are using Node.js, install it with npm
npm install fcall
or yarn
yarn add fcall
Example
If you are using Node.js, you can call any function in the world in the following way:
// Import the `fcall` module
import { f } from 'fcall';
// Call any remote function in the world
const result = f('your_function', [param1, param2, param3]);
How does fcall work?
fcallsends a request to the server to fetch the function by its name'your_function';- The server then returns the source code of function
'your_function'; - The function source code is executed with the parameter list
[param1, param2, param3]; - The result is returned after calling the function
f('your_function', [param1, param2, param3]).
