Skip to content
View himanshuchandola's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@Uttarakhand-Culture

Block or report himanshuchandola

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
himanshuchandola/README.md

Hi there!

Typing SVG

wakatime npx himanshuchandola

I'm Himanshu Chandola, a Software Engineer 👨🏻‍💻 with a strong passion for JavaScript and open-source. I specialize in building scalable web and mobile applications and intuitive user interfaces.

Currently, I’m working at Exiliensoft Consulting Services, helping build modern solutions. I love exploring new technologies and contributing to the developer community.

Projects

Apart from the pinned repositories, I have built:

Project Description Tech Stack
himanshu-cli Interactive Personal Portfolio in your terminal. TypeScript, Node.js, tsup
Reqly A powerful mobile API testing client built with React Native and Expo. React Native, TypeScript, Expo
Swagger React JS Demo merging multiple Swagger JSONs into one interface. React, JavaScript, Swagger

🛠️ Tech Stack

I mostly work with TypeScript, specifically React.js/Next.js in the web frontend , React Native for mobile applications and Nodejs for backend.

JavaScript TypeScript React React Native Next.js NestJS Node.js GraphQL Bun PostgreSQL Redis Docker Git AWS

Let's connect!

Explore my thoughts at himanshuchandola.dev, and let's connect on 𝕏 (Twitter) and LinkedIn.

Twitter Follow Website LinkedIn GitHub followers

Let's code, connect, and create awesome things together!

GitHub Streak


Buy Me A Coffee

Pinned Loading

  1. reactjs-prod-dockerfile reactjs-prod-dockerfile Public template

    Production-ready Dockerfile for React.js. Optimized for performance, security, and minimal image size.

    CSS

  2. nextjs-prod-dockerfile nextjs-prod-dockerfile Public template

    Production-ready Dockerfile for Next.js. Optimized for performance, security, and minimal image size.

    TypeScript

  3. basic-chrome-extension basic-chrome-extension Public

    Chrome Extension using React 18 and Webpack 5

    JavaScript

  4. TypeScript utility functions for han... TypeScript utility functions for handling encrypted localStorage operations. This Gist includes three functions: setLocalStorageData for saving data to localStorage, getLocalStorageData for retrieving data from localStorage with a fallback option if the key is not found or if the data retrieval fails., and clearLocalStorageData to delete data from browser.
    1
    /**
    2
     * Encrypted Local Storage Utility using CryptoJS (TypeScript)
    3
     *
    4
     * This utility provides secure methods to store, retrieve, and clear data
    5
     * in localStorage using AES encryption. Works in React/Next.js projects.
  5. TypeScript utility functions for han... TypeScript utility functions for handling localStorage operations. This Gist includes three functions: setLocalStorageData for saving data to localStorage, getLocalStorageData for retrieving data from localStorage with a fallback option if the key is not found or if the data retrieval fails., and clearLocalStorageData to delete data from browser.
    1
    // set localStorage data
    2
    export const setLocalStorageData = (key: string, value: any) => {
    3
      try {
    4
        const localStorageValue = JSON.stringify(value);
    5
        localStorage.setItem(key, localStorageValue);
  6. ReactJS-Custom-Packages ReactJS-Custom-Packages Public

    These are the custom packages built in react typescript that can be used in numerous projects.

    CSS