An Angular 2 Webpack Starter kit featuring Angular 2, Router, TypeScript, and Webpack by AngularClass
angular 4 starter kit with webpack
and a lot of features (https://github.com/AngularClass/angular-starter), which files/folder I can delete for starting new project. Thanks.
var proxies = require("../proxy.config.json");
var proxy_url = proxies.base_api_url;
...
devServer: {
proxy: {
'/api_request': {
target: proxy_url,
secure: false
}
}
},
Wanted to know wether module build will be allow to deploy the module alone..
example: in my application i have one module which is used with lazy loading .
and i deploy the complete application including the lazy loaded module.
after a while there is a change in lazy loaded module. Now ther are two ways of deploying
1) Build the complete application which will build the lazy loaded module as well and deploy the complete code
2) build only the lazy loaded module and deploy it alone ( Is this possible already ?)
hi,
Rx.Observable.fromPromise($.getJSON('https://api.github.com/users'))
.subscribe(users => {
console.log('users ready', users);
$('.pai-del-menu').hide();
var grid = $("#grid").kendoGrid({
dataSource: {
data:
@all hi,
const getJsonPromise = $.getJSON('https://api.github.com/users');
Rx.Observable
.fromPromise(getJsonPromise)
.retryWhen(errors => {
return errors.scan((errorCount, err) => {
//auth token validation
}, 0);
})
.subscribe(users => {
console.log('users ready', users);
});
@all hi,
$("#open1").click(function () {
$("#win1").show().kendoWindow({
width: "300px",
height: "500px",
modal: true,
title: "Window 1"
});
$('#win1').data('kendoGrid').refresh();
setInterval(function () {
var randomnumber = Math.floor(Math.random() * 100);
debugger;
console.log("I am here");
//$('#win1').text('I am getting refreshed every 3 //seconds..! Random Number ==> ' + randomnumber);
},
1000);
});
hi,
http://sports.com/players/playersJumping
Error
HTTP Status 404 – Not Found
Type Status Report
Message /players/playersJumping
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/8.5.23
Can't resolve all parameters for XService (?, ?, [object Object])
issues. Seems it can't locate basic things like NgZone
and Router
, which is quite weird!