Skip to content
View ChiragRupani's full-sized avatar
:bowtie:
πŸ‘¨β€πŸ’»
:bowtie:
πŸ‘¨β€πŸ’»
Block or Report

Block or report ChiragRupani

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
ChiragRupani/README.md

πŸ– Hi there!

I am Chirag. I am full stack software developer πŸ’».

πŸ”­ I’m currently working on the Progressive Web App using .NET 8, ASP.NET Core, React, TypeScript, T-SQL, Cosmos DB, microservices based architecture and Microsoft Azure.

πŸ€” I'm interested in Software Development, Software Architecture and Design, Clean Code, analysing and debugging solutions.

🌐 My Site: https://chiragrupani.github.io/MySite/

πŸ“§ I am currently looking for a new job opportunity where I can continue to grow and develop as a software engineer. If you want to contact me, you can send me an email at chiragrupani23@outlook.com

⚑ I have a passion for clean and maintainable code, and I always strive to write code that is easy to read and understand.

πŸ§‘β€πŸ’Ό I have experience working on large and complex applications, and I have a strong understanding of software design patterns and best practices.

πŸ’¬ I hope you enjoy browsing through my profile. Thanks for visiting! πŸ‘€

Pinned

  1. TSUnitTestsSetup TSUnitTestsSetup Public

    Starter code to create unit tests in typescript using Jasmine, Mocha/Chai, Jest or Vitest

    TypeScript 91 33

  2. package-install-cmd package-install-cmd Public

    Command Generator For Packages - Generates commands to install npm packages based on package config file

    TypeScript 1

  3. roslyn roslyn Public

    Forked from dotnet/roslyn

    The .NET Compiler Platform ("Roslyn") provides open-source C# and Visual Basic compilers with rich code analysis APIs.

    C#

  4. karma-chromiumedge-launcher karma-chromiumedge-launcher Public

    Karma plugin and launcher for Chromium Edge Canary, Dev and Beta

    TypeScript 12 1

  5. Ngrx8StoreSample Ngrx8StoreSample Public

    This is sample ToDoApp build using latest version of Angular for front-end. This app demonstrates using Ngrx Store and Effects to manage global store of ToDos using redux pattern

    TypeScript 17 18

  6. React Code snippet for class component React Code snippet for class component
    1
    "reactClassComponent": {
    2
        "prefix": "RC",
    3
        "scope": "typescriptreact",
    4
        "body": "import * as React from 'react';\n\nexport default class ${1:${TM_FILENAME_BASE}} extends React.Component<{}, {}> {\n  constructor(props) {\n    super(props);\n  }\n\n  render() {\n    return (\n        <div>\n            $0        \n        </div>\n    );\n  }\n}",
    5
        "description": "Creates a React component class"