self-contained

Recommended python library/framework for local web app?

我怕爱的太早我们不能终老 提交于 2019-11-30 08:41:15
I want to create a simple LOCAL web app in Python. The web server and "back-end" code will run on the same system (initially, Windows system) as the UI. I doubt it matters, but the UI will be a typical webish combo of Google Chrome, HTML, CSS, JavaScript, and jQuery. There are a TON of Python-based web programming frameworks, but they all seem designed for building sophisticated, large-scale apps with lots of back-end infrastructure. I want the opposite: Something very simple, lightweight, and easily self-contained--just enough web server and framework to create/support a local web app.

Self-Contained Applications, built in Java

混江龙づ霸主 提交于 2019-11-30 06:59:40
I've watched a few online presentations that briefly mentioned self-contained applications in Java 9, but I have a question that I would like cleared up. With the new module system, you're now allowed to only include the minimum amount of code required to run your application. However, does the system that wishes to run the application still require the JRE, or is that something that can be included in the base module within the program? I suspect it's the latter, as the page ( here ) to download the newest version of Java still shows version 8_151. TL;DR - Using Java 9, is it possible to

Recommended python library/framework for local web app?

六月ゝ 毕业季﹏ 提交于 2019-11-29 12:13:49
问题 I want to create a simple LOCAL web app in Python. The web server and "back-end" code will run on the same system (initially, Windows system) as the UI. I doubt it matters, but the UI will be a typical webish combo of Google Chrome, HTML, CSS, JavaScript, and jQuery. There are a TON of Python-based web programming frameworks, but they all seem designed for building sophisticated, large-scale apps with lots of back-end infrastructure. I want the opposite: Something very simple, lightweight,

Publish .NET Core App As Portable Executable

倖福魔咒の 提交于 2019-11-27 01:29:48
问题 I have a simple .net core app and publish it by following command: dotnet publish -c Release -r win10-x64 SqlLocalDbStarter.csproj <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.1</TargetFramework> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Win32.Registry" Version="4.5.0" /> </ItemGroup> </Project> When publish process finished dotnet create win10-x64 folder at bin\Release folder then after open it the folder