Skip to content

Instantly share code, notes, and snippets.

View RajaShanmugamJM's full-sized avatar
👋

Raja Shanmugam JM RajaShanmugamJM

👋
  • 05:57 (UTC +05:30)
View GitHub Profile

Setting up Webpack for any Typescript project from Scratch

Welcome to step by step hands-on guide to setup webpack in your upcoming typescript project. Please follow the steps and you should be able to create your own webpack project. Please download the source code from github.

You will learn below things:

  1. ✅Create a Typescript node.js project.
  2. ✅Install Dependencies with webpack & typescripts.
  3. ✅Use Webpack CLI to crate webpack.config.js file and modify webpack.config.js based on our need.
@RajaShanmugamJM
RajaShanmugamJM / main.dart
Created May 5, 2019 08:52
Polyline support in Google Maps Flutter
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
void main() => runApp(Main());
class Main extends StatefulWidget {
@override
_MainState createState() => _MainState();
@RajaShanmugamJM
RajaShanmugamJM / app.component.ts
Last active March 28, 2020 15:09
Simple Google Map Integration with Angular.
import { Component } from '@angular/core';
import { MapService } from './services/gmap.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
providers: [
MapService
],