Questions tagged [proton-native]
5 questions
2
votes
1 answer
Problems with converting the notepad example of proton-native from js to tsx
I try to convert the Notepad example from the proton-native repository into Typescript. I ran into some issues I could not fix.
Code:
TSConfig:
{
"compilerOptions": {
"strict": true,
"target": "es6",
"module": "ES2015"
}
}
package.json:
{
"name":…

Singheskan
- 43
- 3
1
vote
1 answer
I was trying to create a Proton Native App using "create-proton-app new-App" but it fails with a bunch of errors
I cannot create a new proton application.
Command $ create-proton-app new-App gives following utput:
Creating a new Proton Native app on /home/xxxxx/new-App
Installing packages... This may take a few minutes.
...
An error ocurred:
npm install…

Nickson Pinto
- 31
- 4
0
votes
1 answer
Unable to Launch Game on Arch Linux Via Steam
I am trying to start Civilization 5 on a Arch Linux System using Steam/Lutris. The game launches fine until the map is ready to be displayed. Once the map is ready to be displayed and the game has finished loading up, the game just closes out with…

TheKrisMoore
- 9
- 5
0
votes
1 answer
How we could dockerizing a Proton-Native App and see the GUI?
I'm trying to dockerize a Proton-Native App, buy i'am not able of see the basic proyect
This is my Dockerfile
FROM node:13
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
RUN npm install
COPY . ./
RUN npx proton-native-cli init .
CMD…

Dario
- 123
- 10
0
votes
1 answer
Can react-native share codebase with Proton native?
I'm working on the mobile app with react native, and going to start on the desktop version. Im considering proton native because it uses the same syntax as react native does, and its size and starting duration are way much better than Electron.
Im…

Chloe Xu
- 1