Creating desktop apps with Angular 2 and Electron.

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Just to update the video; the current API is:

const {app} = require("electron");
const {BrowserWindow} = require("electron");

app.on("ready", () => {
var mainWindow = new BrowserWindow({
width: 1200,
height: 720
})
})

mteodoro
Автор

Hi Raja, Very nice short and to the point video! Exactly what I was looking for!

By any chance, have you tried embedding an Ionic 2 app into Electron? If yes, would appreciate if you could please post a video on it. Thanks!

gauzytn
Автор

nice video! can you make another video demonstrating electron connecting to database and creating another page? thanks!

EricAmigo
Автор

Please do more videos on electron which are advanced, not like basics others do

kagwad_in
Автор

how to send data from input text and angular reads and passed as value to function in electron. the function should return true and then few more input box should be created on the desktop app?

jananikrishna
Автор

I cannot figure out how to connect my new component, can you please help?

bkrazor
Автор

Great video ! Thanks
By the way, you can use the emmet syntax to scaffold your html code, you will win so much time :)

AlainBoudard
Автор

You may already know this, but instead of switching between a terminal window and VS Code, you could use Ctrl + ~ to open a terminal inside of the editor. Less context switching. :)

stevelandsaw
Автор

Please make an video on how to add automatic updates :)

ThomasOrlita
Автор

Great Video; Can we not use angular 1.5 or any <2.0 version to build electron apps?

meetgirishmjn
Автор

how can we create a new process with a new window

akhanda-
Автор

hello Br am try to learn Electron but I fail to great setup plz help me how can I create setup for window and Linux am using window for my project

cuthbertjohnkarawa
Автор

hello raja... how to wrap jar(java backend)? is it possible?

zenhsuld
Автор

+Raja Yogan Hi Raja, first of all great tutorials your subscriber here. I have a question about Electron Angular 2 TS app i wanna use node modules like fs and clipboard etc inside angular 2 component how can i get this to work since require(electron) etc is not working in angular code. I am using angular cli for angular side and electron setup is as it is.

AnantGulia
Автор

Hi, I am getting an error when I am running 'npm run build'

Output filename not configured.

npm ERR! Darwin 15.3.0
npm ERR! argv "/usr/local/bin/iojs" "/usr/local/bin/npm" "run" "build"
npm ERR! node v3.3.1
npm ERR! npm v2.14.3
npm ERR! code ELIFECYCLE
npm ERR! Exit status 255
npm ERR!
npm ERR! This is most likely a problem with the angular2desk package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! webpack --progress --profile --colors --display-error-details --display-cached
npm ERR! You can get their info via:
npm ERR! npm owner ls angular2desk
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!


There is a bit above that, but it just shows the usage for the webpack command.

Thanks!

KazukiVT-YT
Автор

Hi, do you know why can't I use ng statements like "ng-if" inside HTML file?

kamilgancarczyk
Автор

great video, but I get the following error: Error: Cannot find module 'app', could you help me?

yofrank
Автор

This together with NativeScript is the future, but shh, I intend on making myself rich :D

Amivit
Автор

The `app.ts` file seems to not do anything.

```///<reference
import {bootstrap} from 'angular2/platform/browser';
import {Component} from 'angular2/core';

@Component({
selector: 'myapp',
template: '<h1>Angular 2 app inside a desktop app</h1>'
})

export class AppComponent {}

bootstrap(AppComponent);```

It's without colour which means it isn't doing it's job. Any ideas ?

FlyteWizard
Автор

I think that English is not your native(and for me) lang, really? Where are you from?

coreytodtaylor