Bridging the Gap between Expo SQLite and Node.js
While working with expo-sqlite, I ran into few challenges: database migrations, integration testing, and strange resource locks and connection exceptions....
Node.js is for developers who want to build fast, scalable applications using JavaScript on the server. It solves problems around handling many concurrent requests efficiently, making it well suited for APIs, real time features, and network driven services. It is especially useful when you want to share language, tooling, and mental models between frontend and backend code.
While working with expo-sqlite, I ran into few challenges: database migrations, integration testing, and strange resource locks and connection exceptions....
With the Google Play Developer API I can focus more on the development part and less on the manual work. I don't need to manually upload an app release, I automate it through GitHub...
If you're developing for the App Store, you'll eventually need to generate an app store connect...
I recently found out that npm doesn't support downloading same scope dependencies from multiple registries. Ideally, I'd like to define multiple registries for a scope. If npm fails to find the package...
This is my little cheatsheet for fixing the classic: Error: EACCES: permission denied, mkdir when installing an npm package without sudo. Installing it globally with sudo npm i -g looks off to me. Why this happens...