Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 hours ago.
Improve this question
please solve this error
This Serverless Function has crashed.
Your connection is working correctly.
Vercel is working correctly.
500: INTERNAL_SERVER_ERROR
Code: FUNCTION_INVOCATION_FAILED
ID: bom1::zcvsk-1676826098000-9c8a6550e562
If you are a visitor, contact the website owner or try again later.
If you are the owner, learn how to fix the error and check the logs.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 days ago.
Improve this question
https not defined
Even after adding
const https=require("https");
The issue ain't getting resolved .
Does http:// work? If it does, the site you are attempting to connect to might not be secure. https:// only works if the site information is encrypted.
You gave const https=require("https");, but I don't know the context of what you are attempting to use it for, so this is hard to answer.
Are you using that variable out of scope?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 days ago.
Improve this question
I have tried to send a message to the "shopping bot" after I declared it and its config in the main.ts, but I am getting an error that the shopping bot resource does not exists.
I found the Solution it was a versioning problem with the lex dependancy.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
i am using this lib the small data process but large data not process it goes to server crash
try catch method also be user but it not catch error
node make report.json file
it lib issue any else
Memory limit? Try launch nodejs with --max-old-space-size=4096 key. It set memory limit to 4GB from default ~1.4GB.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I have created a simple application that only functions to send a message but the function uses the SMS application from the cellphone and not from the application that I made, my application runs fine, but there is a problem with the SMS permissions that make the function blocked or unable to run, can you help?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
Execution failed for task
':app:transformNativeLibsWithMergeJniLibsForDebug'. > More than one
file was found with OS independent path
'lib/arm64-v8a/libc++_shared.so'
This happens when trying to build APK from this file https://github.com/node-on-mobile/node-on-android
Try adding this inside your build.gradle:
android {
...
packagingOptions {
exclude 'lib/arm64-v8a/libc++_shared.so'
}
}
I had the same issue compiling the project, the solution I found is in two steps:
Rename jniLibs/arm64-v8a/libc++_shared.so to jniLibs/arm64-v8a/libc++node_shared.so
Change line 401 of src/main/include/node/common.gypi into
'CLANG_CXX_LIBRARY': 'libc++node',
There is also a repository issue where I'm going to suggest this solution.