Answer the question
In order to leave comments, you need to log in
Packing a website into a PC application - is it possible?
Good afternoon!
There is a self-written CRM for the browser, everyone likes it, but the fact that it lives in the browser causes several inconveniences - you can accidentally close tabs and all that ...
Is there a way to "pack" the site into an application, such as with its own icon, tray and process to pop up on the hotkey. Well, in fact, it should be a regular browser that opens a hard-coded address.
I know about all sorts of electron and Nw.js, but it's too long and dreary for such a small task.
Answer the question
In order to leave comments, you need to log in
My CRM works like this on NW.js
I did it when I got tired of catching bugs in different browsers.
Hotkey popup can probably also be done on JS in index.html You make
2 files:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
</style>
<script>
// Load native UI library
var ngui = require('nw.gui');
// Get the current window
var nwin = ngui.Window.get();
onload = function() {
nwin.show();
nwin.maximize();
require('nw.gui').Window.get().showDevTools(); // закомментировать если не нужна панель отладки
document.location = 'http://ТВОЙ_УРЛ_В ВЕБЕ';
};
</script>
</head>
<body></body>
</html>
{
"main": "index.html",
"name": "МОЯ_СУПЕР_ЦЭРЭМЭ",
"description": "ОПИСАНИЕ",
"version": "0.1.0",
"single-instance": true,
"keywords": [
"crm"
],
"window": {
"title": "МОЯ_СУПЕР_ЦЭРЭМЭ",
"toolbar": false,
"frame": true,
"width": 1280,
"height": 1024,
"position": "center",
"min_width": 1024,
"min_height": 768
},
"webkit": {
"plugin": true,
"page-cache": true
},
"author": "АФФТАР",
"maintainers": [
{
"name": "АФФТАР",
"email": "МЭЙЛ",
"web": "http://САЙТ"
}
]
}
stackoverflow.com/questions/19229235/run-standalon...
You can start here.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question