GaboMendez / CyberDev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CyberDev

Development test


Table of Contents

Requirements

For development, you will only need NodeJS and a node global package, Yarn, installed in your environement.

Node

  • Node installation on Windows

    Just go on official NodeJS website and download the installer. Also, be sure to have git available in your PATH, npm might need it (You can find git here).

  • Node installation on Ubuntu

    You can install nodejs and npm easily with apt install, just run the following commands.

    $ sudo apt install nodejs
    $ sudo apt install npm
    
  • Other Operating Systems

    You can find more information about the installation on the official NodeJS website and the official NPM website.

If the installation was successful, you should be able to run the following command.

$ node --version
v16.13.1

$ npm --version
8.1.2

If you need to update npm, you can make it using npm! Cool right? After running the following command, just open again the command line and be happy.

$ npm install npm -g

Yarn

After installing node, this project will need yarn too, so just run the following command.

  $ npm install -g yarn

Install

Clone the repository, open terminal in root and do the following on terminal

$ git clone https://github.com/GaboMendez/CyberDev
$ cd CyberDev

Run Algorithms

 $ cd Algorithms

Random Values

 $ node RandomValues.js

Prime numbers

 $ node PrimeNumber.js

ATM Emulator

 $ node CashMachine.js

Coincidences

 $ node Coincidences.js

Run MobileApp

If you are in ./Algorithms you need to do:

 $ cd ..
 $ cd MobileApp

Otherwise you need to do:

 $ cd MobileApp

Movie App in your local environment

 $ yarn install
 $ yarn android

APK in Android Device

If you are in the project root directory you only need to do:

 $ cd ReleaseAndroid

Take the .apk file to android device for installing it, and that's it you have the MovieApp in your phone.

App Screens

About

License:MIT License


Languages

Language:JavaScript 64.5%Language:Java 21.4%Language:Objective-C 9.3%Language:Ruby 2.7%Language:Starlark 2.1%