skip to Main Content

Slow Azure functions deployment

I have a Node.js Azure Function in TypeScript. When I deploy, it takes like 25 minutes to deploy. Those are pretty basic functions with Prisma ORM. Building locally takes couple seconds only. Is that normal? I also have the WEBSITE_RUN_FROM_PACKAGE…

VIEW QUESTION

How to use CheckBoxes in React Native

I am creating a todo list app with react native, and now I am stuck with one thing, I need to use CheckBoxes. I tried some libraries like: react-native-community/checkbox, react-native-check-box, react-native-elements Only react-native-community/checkbox worked, but there was one problem that…

VIEW QUESTION

Javascript – ts-node cannot find dependent module

Assume to have simple typescript program having two files: src/hello.js export default function hello() { return 'Hello world' } src/say.js import hello from './hello.js' console.log(hello()) with the following tsconfig.json { "compilerOptions": { "lib": ["es2023"], "module": "node16", "target": "es2022", "strict": true,…

VIEW QUESTION
Back To Top
Search