SKShiv Kumar ojhainshivkumarojha.tech·Jun 4, 2024 · 1 min readHow to use .env variables with React(Vite)You typically using vite for your every day React projects. You could also want to put some environment variables and access securely. But how can you do it? Steps: - First create a .env file outside your src directory. Add variables in .env file -...00
SKShiv Kumar ojhainshivkumarojha.tech·Apr 4, 2024 · 2 min readCommon Js and Modules in JavaScript/ Node js WorldOld Way - Common Js // import const express = require('express') // export module.export = express New Way- Modules // import import express from 'express // export export default express Modules is a fancier name for Files. It is that simple. C...00