You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to install the NPM version to be able to access the Frida syntax in a typescript script, but I had problems.
There is no way to run the module from the global environment (npm install -g frida).
Install it in the “project” (I had to create a new folder just for the script and convert it to vsc project) it detects it, but it doesn't find the syntax.
I tried using
import * as frida from 'frida';
but it tells me that
The property 'Process' does not exist in type 'typeof import(“d:/New folder (2)/node_modules/frida/dist/index”)'.ts(2339)
I wanted to install the NPM version to be able to access the Frida syntax in a typescript script, but I had problems.
There is no way to run the module from the global environment (npm install -g frida).
Install it in the “project” (I had to create a new folder just for the script and convert it to vsc project) it detects it, but it doesn't find the syntax.
I tried using
import * as frida from 'frida';
but it tells me that
The property 'Process' does not exist in type 'typeof import(“d:/New folder (2)/node_modules/frida/dist/index”)'.ts(2339)
in short, I cannot access the simple
const module = Process.findModuleByName(moduleName);
because it does not exist, either process or findModuleByName inside the npm module.
PS D:\New folder (2)> npm list --depth=0
New folder (2)@ D:\New folder (2)
├── [email protected]
└── [email protected]
The text was updated successfully, but these errors were encountered: