biz9-scriptz v5.5.6
BiZ9-ScriptZ
The BiZ9-ScriptZ framework component handles all scripting for the BiZ9-Framework.
Installation
Use the npm installer to install.
npm install biz9-scriptz
Required
Optional
Commands
App
App Service
Diff
GIT
- 9_git_branch_update
- 9_git_branch_list
- 9_git_commit
- 9_git_hub_test
- 9_git_push
- 9_git_reset_init
- 9_git_main_branch_merge_checkout
Mobile
- 9_mobile_android_emulator_start
- 9_mobile_react_build
- 9_mobile_react_cache_reset
- 9_mobile_react_clean
- 9_mobile_react_device_build_deploy
- 9_mobile_react_device_log_android
- 9_mobile_react_device_port_open
Mongo
About
9_blank
tbd
Params
- none
Example
-- code_here --
9_app_info
Print BiZ9 project application specifications.
Params
- none
Example
$ 9_app_info
#################
BiZ9 Framework App Info
#################
------------
Git Info
---
Version: 1.0.0
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: main
---
------------
App Info
---
Title: BiZ9-Project-Blank-Service
App Title ID: project-blank-service
Project ID: 19
Port ID: 1901
############
END
2025-01-01 16:07:44
############
9_node_service_start
Start Express.js nodemon application server.
Params
- none
Example
$ 9_node_service_start
[nodemon] 3.1.7
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,cjs,json
[nodemon] starting `node bin/www index.js`
[nodemon] clean exit - waiting for changes before restart
9_port_open_list
Print all open ports on system.
Params
- none
Example
$ 9_port_open_list
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 707/redis-server 12
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 915/nginx: master p
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 706/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1161/exim4
tcp6 0 0 ::1:631 :::* LISTEN 706/cupsd
tcp6 0 0 ::1:25 :::* LISTEN 1161/exim4
tcp6 0 0 :::80 :::* LISTEN 915/nginx: master p
tcp6 0 0 ::1:6379 :::* LISTEN 707/redis-server 12
9_react_start
Start React application server.
Params
- none
Example
$ 9_react_start
src/feature-module/pages/our-team/teamCarousel.tsx
Line 1:17: 'useState' is defined but never used @typescript-eslint/no-unused-vars src/feature-module/router/router.link.tsx Line 338:7: Unexpected whitespace before property notificationSetting no-whitespace-before-property src/feature-module/user-dashboard/user-message/index.tsx Line 4:8: 'Scrollbars' is defined but never used @typescript-eslint/no-unused-vars
webpack compiled with 1 warning
No issues found.
9_diff_file
Compare 2 different files line by line.
Params
- filename 1, filename 2
Example
$ 9_diff_file file1.js file2.js
console.log(" This Is File 1 "); | console.log(" This Is File 2 ");
9_diff_folder
Compare 2 different folders file by file.
Params
- folder_1, folder_2
Example
$ 9_diff_folder folder_1 folder_2
Only in folder_1: file1
Only in folder_2: file2
9_git_branch_update
GIT Branch update to new version. Increment app version by 1 to make new branch name.
Params
- none
Example
$ 9_git_branch_update
#################
BiZ9 Framework GIT Branch Update
#################
1.0.3
Switched to a new branch '1.0.3'
############
END
2025-01-01 17:36:23
############
9_blank
Print GIT Branch list.
Params
- none
Example
$ 9_git_branch_list
#################
BiZ9 Framework GIT Branch List
#################
------------
Git Info
---
Version: 1.0.2
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: 1.0.3
---
* 1.0.3
main
############
END
2025-01-01 17:54:29
############
9_git_commit
GIT commit aka save your code changes.
Params
- none
Example
9_git_commit
#################
BiZ9 Framework App Git Commit
#################
------------
Git Info
---
Version: 1.0.4
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: 1.0.3
---
Enter notes:
my commit notes
[1.0.3 5b786ee] my commit notes
1 file changed, 1 insertion(+), 1 deletion(-)
############
END
2025-01-01 17:58:12
############
9_git_hub_test
GIthub.com with system connectivity test.
Params
- none
Example
$ 9_git_hub_test
Hi biz9framework! You've successfully authenticated, but GitHub does not provide shell access.
9_git_push
GIT push your code to GIT remote repository.
Params
- none
Example
$ 9_git_push
#################
BiZ9 Framework Git Push
#################
------------
Git Info
---
Version: 1.0.5
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: 1.0.3
---
Are you sure?
yes
Enumerating objects: 166, done.
Counting objects: 100% (166/166), done.
Delta compression using up to 4 threads
Compressing objects: 100% (163/163), done.
Writing objects: 100% (166/166), 188.89 KiB | 5.72 MiB/s, done.
Total 166 (delta 56), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (56/56), done.
To github.com:biz9framework/biZ9-project-blank-service.git
* [new branch] 1.0.3 -> 1.0.3
############
END
2025-01-01 18:37:15
############
9_git_reset_init
GIT reset, then intalize new GIT, last check out to main branch.
Params
- none
Example
9_git_reset_init
#################
BiZ9 Framework GIT Reset Init
#################
------------
Git Info
---
Version: 1.0.5
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: 1.0.3
---
Initialized empty Git repository in /biz9-projectz/blank-service/code/.git/
Switched to a new branch 'main'
############
END
2025-01-01 18:54:05
############
9_git_main_branch_merge_checkout
GIT switch to ‘main’ branch and checkout out 'main' branch.
Params
- none
Example
$ 9_git_main_branch_merge_checkout
#################
BiZ9 Framework Git Main Branch Merge Checkout
#################
------------
Git Info
---
Version: 1.0.5
Repo: git@github.com:biz9framework/biZ9-project-blank-service.git
Branch: 1.0.6
---
Are you sure?
yes
Deleted branch main (was e81642e).
1.0.6
############
END
2025-01-01 19:04:05
############
9_mobile_android_emulator_start
Start Android emulator.
Params
- none
Example
$ 9_mobile_android_emulator_start
Starts and open Android emulator instance on system.
9_blank
tbd
Params
- none
Example
-- code_here --
9_mobile_react_build
React Native build project.
Params
- none
Example
-- coming soon --
9_mobile_react_cache_reset
React Native cache reset.
Params
- none
Example
-- coming soon --
9_mobile_react_clean
React Native clean project.
Params
- none
Example
-- coming soon --
9_mobile_react_device_build_deploy
React Native device build and deploy to device.
Params
- none
Example
-- coming soon --
9_mobile_react_device_log_android
React Native device log messages on system.
Params
- none
Example
-- coming soon --
9_mobile_react_device_port_open
Open system port for React Native log messages.
Params
- none
Example
-- coming soon --
Credits
Credits
Company
- BiZ9 Framework LLC
Code
Support
The BiZ9 Framework 🦾
The BiZ9 Framework is a developer friendly platform for building premium, polished, fast, professional and scalable business applications using the lastest rapid application development tools and techniques. The framework consists of libraries, commands, scripts, and packages for creating, maintaining, testing, and deploying both mobile and website applications. The primary 3rd party framework used are React, React Native, Node.js, ExpressJS, MongoDB, Nginx, Redis, Git, and Bash. The BiZ9 Framework focus is to be precise, routine, rapid, and customizable. The primary target devices for The BiZ9 Framework are Apple iOS, Android, Chrome, Safari, Firefox, and Edge. Other 3rd party Application Programming Interfaces (API) that are pre included are Amazon Web Service, Stripe and Bravely.
- Biz9 Framework GitHub
- Biz9 Framework Blog
- BoSS Mobile App Youtube Demo
TaNK9 Code 👽
Brandon Poole Sr also known as ‘TaNK’ is a technical lead and full stack software engineer with over 19 years of professional experience. He was born and raised in Atlanta, Ga and graduated with a Computer Information Systems Bachelor of Science Degree from Fort Valley State University. He is proficient in ASP.NET C#, ASP.NET MVC, .NET Core, Microsoft SQL Server, IIS Web Server, Node.js, React, React Native, Framework7, Redis, Amazon Web Services, Apple iOS, Android SDK, MongoDB, Redis, NGINX, and Git. He has worked as a software developer for Fortune 500 companies such as The Boeing Company, Georgia Pacific, Colonial Pipeline, Home Depot and United Parcel Services.
He is sometimes referred to as “the real Tank” from the movie The Matrix.
TagZ:
#BiZ9Framework
#BoSSAppZ
#Mobile
#Apple
#Android
#ApplicationDevelopment
#SoftwareFramework
#Cloud
#IOS
#Linux
#JavaScript
#NoSQL
#AppMoneyNoteZ
#TaNK9Code
Thank you for your time.
Looking forward to working with you.
License
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago