Skip to content

Instantly share code, notes, and snippets.

View abhilashrathod's full-sized avatar

Abhilash Rathod abhilashrathod

View GitHub Profile
@abhilashrathod
abhilashrathod / extensions.txt
Created February 3, 2020 06:58
List of Useful Visual Studio Code Extensions for Frontend/Backend JS Developers (Node, Angular, React, HTML and CSS)
1. Javascript (ES6) Code Snippets: [JS]
https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets
This extension contains code snippets for JavaScript in ES6 syntax for Vs Code editor (supports both JavaScript and TypeScript). It supports JavaScript (.js), TypeScript (.ts), JavaScript React (.jsx), TypeScript React (.tsx), Html (.html), Vue (.vue) files.
2. CSS Peek: [CSS]
https://marketplace.visualstudio.com/items?itemName=pranaygp.vscode-css-peek
Image demo
2.1 link: https://raw.githubusercontent.com/pranaygp/vscode-css-peek/master/working.gif
2.2 https://raw.githubusercontent.com/pranaygp/vscode-css-peek/master/symbolProvider.gif
This extension extends HTML and ejs code editing with Go To Definition and Go To Symbol in Workspace support for css/scss/less (classes and IDs) found in strings within the source code. This plugin has taken its inspiration from Brackets. The extension supports all the normal capabilities of symbol definition tracking, but does it for css selectors (classes,
@abhilashrathod
abhilashrathod / deserialize.service.ts
Created September 22, 2017 09:23
this service helps convert php serialized string to json object for angular 2/4 projects.
export class DeserializeService {
idx = 0;
refStack = [];
ridx = 0;
parseNext;
phpstr: string = '';
constructor() {