Sciter's author here. What would be strategies in case of Kickstarter campaign will fail? In principle I can publish it for free as it is now but I definitely don't want it to be one more of abandon-ware projects that are open sourcing as the end of life. In general OS development is significantly more costly (for the author) as closed source one - for many reasons. So OS development needs steady stream of funding. S…
Would a Unity/Unreal engine style model work?
ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
141–150 of 201 posts
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#142Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#143Earlier quoted context omitted.
Data taken from : https://www.emergeinteractive.com/insights/detail/does-irres... > And according to the Department of Energy the average US power plant expends 600 grams of carbon dioxide for every kWh generated. That means that transferring 1GB of data produces 3kg of CO2.
Are we to believe that it takes 5kWh to transfer 1GB of data? My media server runs under 500W, so could operate for over 10 hours before hitting this and download terabytes of data. Even other machines needed to facilitate the connection can't explain a 1000x discrepancy. My guess is that the author confused kWh with Wh at some point.
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#144Earlier quoted context omitted.
My first thought would be patreon or another of those services where people can sponsor monthly.
How realistic is the patreon schema? Say you would need to support 2-3 members team of highly professional software developers... Is patreon realistic for that?
See Evan You (Vue.js) for example: https://www.patreon.com/evanyou
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#145It's not entirely clear, does this support node integration? Like utilizing the file system, node-gyp modules, etc. It looks like this just vanilla javascript and displays html/web pages. Perhaps we can bundle a nodejs program alongside sciter?
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#146Does it use the DOM, or can it use things like D3.js that manipulate the DOM.
Some browser compatibility layer will be required though.
The plan for Sciter.JS is to provide minimal DOM implementation to keep it lightweight.
For example there is no document.getElementsByTagName method but there is document.querySelectorAll.
So if that exact method is needed anyone can add:
Document.prototype.getElementsByTagName = function(tag) {
return this.querySelectorAll(tag);
}
That's the idea of Sciter.JS: engine with core functionality that can be configured to run browser and electron applications, just a matter of adequate compatibility layer.Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#147What prevents me from even looking at this link is the 4.5MB executable. Come on. Have you tried to download that amount of data using a spotty mobile connection?
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#148It's not entirely clear, does this support node integration? Like utilizing the file system, node-gyp modules, etc. It looks like this just vanilla javascript and displays html/web pages. Perhaps we can bundle a nodejs program alongside sciter?
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#149Earlier quoted context omitted.
Internet Explorer ran on macOS back when it was relevant. It got discontinued after Safari was released. Also, Internet Explorer was ported to various Unices. It just never got ported to a Linux-kernel based OS. If software like this is FOSS, relies on open standards, and is designed architect independent it can be run on virtually anything. Including something which is rising in popularity.
Not only was there IE for Mac -- at the time, it was actually a pretty decent browser . Bit rotted over time, but there was a stretch when your choices were a really janky Netscape and IE for Mac, and the choice as I recall it was pretty easy.
Re: ElectronJS alternative: SciterJS – HTML/CSS/JS in 4.5 MB executable
#150Sciter's author here. What would be strategies in case of Kickstarter campaign will fail? In principle I can publish it for free as it is now but I definitely don't want it to be one more of abandon-ware projects that are open sourcing as the end of life. In general OS development is significantly more costly (for the author) as closed source one - for many reasons. So OS development needs steady stream of funding. S…
Revenue streams ideas: 1. Build a deployment tool, where you take care of building the apps for the different OS, basically bridge the gap from code to final binary 2. Offer support / consulting hours "from the experts" 3. Force some kind of ad/watermark/screen on the app where you can see the name of the project and website. In order to remove this you will need a key or build the project using the service I described in point 1.
Happy to chat and discuss in more details. Good luck!