Skip to content

Instantly share code, notes, and snippets.

View rupeshtiwari's full-sized avatar
🎯
Focusing

Rupesh Tiwari rupeshtiwari

🎯
Focusing
View GitHub Profile
@rupeshtiwari
rupeshtiwari / typescript-declaration-bundler-webpack-plugin-fix.js
Last active September 20, 2018 13:28
typescript-declaration-bundler-webpack-plugin-fix ( Creates type definition bundle file for all of the typescript definitions in your app.)
var DeclarationBundlerPlugin = (function () {
function DeclarationBundlerPlugin(options) {
if (options === void 0) { options = {}; }
this.out = options.out ? options.out : './build/';
this.excludedReferences = options.excludedReferences ? options.excludedReferences : undefined;
}
DeclarationBundlerPlugin.prototype.apply = function (compiler) {
var _this = this;
//when the compiler is ready to emit files
compiler.plugin('emit', function (compilation, callback) {
@rupeshtiwari
rupeshtiwari / adding-images-badge-on-readme.md-files.md
Last active June 15, 2024 12:31
How to add your badge on readme files , nom, build, test result badges

How to add your own badge on README.md file

Here is a simple way to create your own badge for your npm package. I hope you will enjoy this.

Where to go and get badge

  • Go to https://shields.io/#/ website
  • prepare your own badge and
  • have these logo references in your readme files.

Alternative way to create badge

You can also follow this pattern https://img.shields.io/badge/[SUBJECT]-[STATUS]-[COLOR].svg and Put something on below values:

@rupeshtiwari
rupeshtiwari / npmrc-file-location-in-windows.txt
Last active October 8, 2018 18:35
NPMRC File location in Windows
%USERPROFILE%\.npmrc
@rupeshtiwari
rupeshtiwari / createbarrel-cli.json
Last active November 8, 2018 21:40
How to Create Barrel
scripts{
"generate-barrel-app": "barrelsby -d src/app -e .spec.ts .tests.ts -q",
}
@rupeshtiwari
rupeshtiwari / kitchen-with-fruits-barrel.js
Created November 8, 2018 21:40
If you have a barrel file in a folder then import can be done from that folder name only and your import looks more clean and maintainable.
import {banana, apple, oranges} from './fruits';
@rupeshtiwari
rupeshtiwari / kitchen-without-fruits-barrel.js
Created November 8, 2018 21:42
If in the fruits folder you do not have a barrel file then in other file where you want to import each fruit will become messy and you end up importing each file explicitly.
import {banana} from './fruits/banana';
import {apple} from './fruits/apple';
import {oranges} from './fruits/oranges';
@rupeshtiwari
rupeshtiwari / barrel-index.js
Created November 8, 2018 21:44
Example of an Barrel File index.ts
export * from './banana';
export * from './apple';
export * from './oranges';
@rupeshtiwari
rupeshtiwari / global-variables.js
Created November 9, 2018 22:04
JavaScript Global Variables
var x= 20;
function add(a) {
return a+x; // here inside a function scope I can access the variable `x` declared globally in this file.
}
@rupeshtiwari
rupeshtiwari / global-variables.js
Last active November 9, 2018 22:04
JavaScript Global Variables
var x= 20; // declaring and instantiating a global variable
function add(a) {
return a+x; // here inside a function scope I can access the variable `x` declared globally in this file.
}
@rupeshtiwari
rupeshtiwari / localscope.js
Created November 9, 2018 22:19
JavaScript Local Scope
function add20(a) {
/*
here variable `a` is a local variable and it is under local scope.
`a` is accessible everywhere within `add20` function.
*/
return a + 20;
}
// this is global scope and I can not access `a` from here which is created inside the function scope.
add20();