Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gomezmig03/palindromosdesktop
Web version: https://github.com/GomezMig03/Palindromos
https://github.com/gomezmig03/palindromosdesktop
Last synced: about 1 month ago
JSON representation
Web version: https://github.com/GomezMig03/Palindromos
- Host: GitHub
- URL: https://github.com/gomezmig03/palindromosdesktop
- Owner: GomezMig03
- Created: 2024-01-08T23:39:54.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T10:19:08.000Z (6 months ago)
- Last Synced: 2024-06-30T13:36:51.924Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ¿Qué es esto?
Este es un proyecto de freeCodeCamp al que decidí crear una versión de escritorio para practicar con node.js y electron.js.![Preview de la aplicación](preview.png)
# Como instalar en local
Para este proyecto se necesita, además de node.js, electron.js.
```
npm install electron --save-dev
```También si quieres hacer tu build se necesita electron-builder.
```
npm install electron-builder --save-dev
```Notese como se usa *--save-dev* en vez de *--save* en ambos ya que no queremos que se guarde en las dependencias finales en el .json, eso haría que la build final los tuviera y aumentaría innecesariamente el tamaño.
Para saber como usarlos vean la documentación de [electron.js](https://www.electronjs.org/docs/latest/tutorial/tutorial-first-app) y [electron-builder](https://www.electron.build/index.html).
---
# What's this?
A freeCodeCamp proyect that I decided to create a desktop version for practice in node.js & electron.js.![Preview of the app](preview.png)
# How to install in your machine
For this project, in addition to node.js, electron.js is needed.
```
npm install electron --save-dev
```If you also want to make your own build you'll need electron-builder.
```
npm install electron-builder --save-dev
```Take note at how *--save-dev* is used instead of *--save* in both installations as we don't want the .json to mark them as final dependecies, which would add them into the final build and would needlessly increase build size.
To know how to use them read the documentation of [electron.js](https://www.electronjs.org/docs/latest/tutorial/tutorial-first-app) & [electron-builder](https://www.electron.build/index.html).