Alexander Kim

Alexander Kim @avxkim

About: I am JS developer. Using React/Vue

Location:
Kazakhstan
Joined:
Sep 30, 2019

Alexander Kim
articles - 9 total

Set up command line launcher in WebStorm 2024.2+

If you're using WebStorm 2024.2+ without JetBrains Toolbox, it won't install command-line launcher...

Learn More 1 0Aug 18 '24

Using Nuxt 3 server routes for telegram bot api

In this short article, we're going to use telegram setWebhook, instead of getUpdates polling...

Learn More 9 0Jul 21 '24

Setup path aliases w/ React + Vite + TS

Out of the box vite doesn't provide "@" path alias to src, so we have to manually setup it. I suppose...

Learn More 80 12Apr 30 '22

Fixing - Cannot find name '__dirname'.ts(2304)

It happens when we try to use __dirname in a TS file. Steps to fix this: Installing node types: npm...

Learn More 12 0Apr 30 '22

Path aliases in Nextjs

Tired of writing such imports? import test from '../../../components/Test.tsx'; Enter...

Learn More 12 0Dec 18 '21

Using axios globally in a Vue 3 with provide/inject (composition API)

In a Vue 2 we had to use Vue.prototype in order to add global properties to a Vue instance. But in a...

Learn More 14 3Dec 3 '21

React and Vue development speed discussion

Is there any dev's that extensively used React and Vue? What do you like more about React/Vue? I fin...

Learn More 2 2Apr 4 '20

Dealing with infinite loops in useEffect hook

When i switched to hooks from class styled components, i considered useEffect() hook with empty depen...

Learn More 14 0Feb 24 '20

My Fetch Wrapper with async/await and TypeScript

Posting my wrapper for a native fetch() API: const API_URL: string = process.env.YOUR_ENV_NAME || '...

Learn More 40 7Feb 13 '20