skip to Main Content

Files Uploaded to S3 do not open

I was developing nodejs api to upload file to my AWS s3. I followed some online articles and using the code below. The files (images/word/pdf) get successfully uploaded to s3. However they do not open. Or give error when downloading…

VIEW QUESTION

Mongodb – Pagination in node js with mongo db

function getDigitalMigrationJoin(req, res, next) { DigitalMigrationForm.aggregate([ // Join with user_info table { $lookup: { from: DigitalMigrationFormList.collection.name, // other table name localField: "_id", // name of users table field foreignField: "digitalFormId", // name of userinfo table field as: "forms" // alias…

VIEW QUESTION

React Native – Authentication – trigger value to change Auth & UnAuth Stack Navigators

Here my App.js import React, { useEffect } from "react"; import { NavigationContainer } from "@react-navigation/native"; import AuthStore from "./src/stores/AuthStore"; import AuthStackNavigator from "./src/navigation/AuthStackNavigator"; import UnAuthStackNavigator from "./src/navigation/UnAuthStackNavigator"; const App = () => { useEffect(() => { console.log("APP JS", AuthStore.userAuthenticated);…

VIEW QUESTION
Back To Top
Search