mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
[GH-ISSUE #205] Offer a way to start and manage processes #141
Labels
No labels
bug
documentation
enhancement
libui issue
pull-request
question
wait for libui implementation
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/proton-native#141
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @atrauzzi on GitHub (Mar 10, 2019).
Original GitHub issue: https://github.com/kusti8/proton-native/issues/205
Does proton native offer any common facility that I can use to create and manage processes from within my applications?
@mischnic commented on GitHub (Mar 10, 2019):
Since proton-native runs on Node, you can use
child_processas you would in Node:@atrauzzi commented on GitHub (Mar 10, 2019):
Oh, interesting. So it bundles a nodejs runtime alongside the native application?
@mischnic commented on GitHub (Mar 10, 2019):
No, your code gets actually executed by Nodejs and you call out to native code (a native library).
@atrauzzi commented on GitHub (Mar 10, 2019):
Ah, I see, so this doesn't build on top of react native, though it aims to be compatible?
@kusti8 commented on GitHub (Mar 10, 2019):
It aims to be like react native. The API is not compatible with react native due to some limitations, but all JS libraries, including react ones, are compatible.
@atrauzzi commented on GitHub (Mar 10, 2019):
Thanks for the info!