$ npm install -g @angular/cli //Setup Angular9 atmosphere
$ ng new angularlatest9 //Install New Angular App
/**You need to update your Nodejs also for this verison**/
$ cd angularlatest9 //Go inside the Angular 8 Project
$ npm install jquery –save //Add jquery module
$ npm i fullcalendar //Add fullcalendar module
$ npm i moment //Add momentjs library
$ ng serve //Run your Angular 8 Project
...
"styles": [
"src/styles.css",
"node_modules/fullcalendar/dist/fullcalendar.min.css"
],
"scripts": ["node_modules/jquery/dist/jquery.min.js",
"node_modules/moment/min/moment.min.js",
"node_modules/fullcalendar/dist/fullcalendar.min.js"]
...
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
//HttP for Rest API's
import { HttpClientModule } from '@angular/common/http';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
#angular 8 #angular 9 #angular7 #fullcalendar