I am new to Typescript and node. I have this function sftp.connect(config) //CONNECT TO STFP .then(() => { sftp.list(remoteFilePath) //LIST THE FILES IN
I have been given in built ui kit which has class based component without extending React.Component. Now i need to use those UI components for building UserInte
I want to send the json data from view to controller using ajax. How can I achieve that? The data in local storage is [{"productId":2,"productCost":"630","produ
I have a page with notes for a specific user, the problem is when i'm trying to access the state of 'my notes' i get 'undefined' on console, in postman, everyth
I'm currently learning as much as I can about recursion but I'm really stuck on how to use it to check whether all the number elements in an array are even numb
The code below saves the contents of a <textarea> to the DOM when the Save button is clicked. function save() { // Create the new el
How can throw an error with options or a status code and then catch them? From the syntax here, it seems we can through the error with additional info: new Erro
I think I should start off by mentioning I have Mac OS and am using Safari browser. This script is a web-scraper that is supposed to search for a given type of
I want to create custom component and build with webpack // packages/button/src/index.js import React from 'react'; function Button({ href }) { return <a
I am trying to dynamically import modules but getting following error - Compiled with problems:X WARNING in ./src/.../useCustomModule.js 21:21-56 Critical depen
Context and goal I have two fetch/then chains that build elements that I need for an event handler. The first chain loads data to build a <select> element
const AddItem = () => { const [user] = useAuthState(auth); const navigate = useNavigate(); const handleAddCar = (e) => { e.preventDefault()
Write a function that takes an array of consecutive (increasing) letters as input and that returns the missing letter in the array. It will be always exactly o
I have this set of data : [ { CIRPIC: 'SAL', ALLPIC: [7, 8, 9, 10] }, { CIRPIC: 'SUC', ALLPIC: [5, 6, 7] }, { CIRPIC: 'LI3', A
I have the following regular expression which matches on all double quotes besides those that are escaped: i.e: The regular expression is as follows: ((?<![
For as long as I can remember, Typescript didn't warn about unresolved/undefined types in .d.ts files. I could run tsc and it wouldn't have any errors. I alrea
I have been working with the react-native-gradient and I am getting the following error regarding the package. Error Invariant Violation: requireNativeComponent
i want to recreate this effect that is visible on https://www.tella.tv/ in tailwind css: i tried to inspect their source code but i couldn't make it work in my
I've built an authorization server with Express.js that works when testing with Postman where it saves the access and rotating refresh token as signed cookies.
I have a Modal that the user selects categories from, and then that category loads into a FlatList on their profile page. When the first category is selected, i