@red5/cli
v1.0.4
Published
red5 command line tools for managing and creating red5 projects.
Downloads
7
Readme
Red5 Command Line Tool
- Installation
- Project Management
- Package Management
- Making Components
- Server Management
Installation
To install the command line tool run an npm install
npm install -g @red5/cli
Once installed you can create projects and project files.
New Project
New projects are created by going to the directory that you want to create a new project within. The command will then create a new directory and install everything into that directory.
red5 new <project-name>
The following steps are taken:
git clone
the bare bones project from github- Install the node dependencies
- Start a test server
- Opens
http://localhost:5000
within a browser to make sure everything works
List Commands
This allows for seeing all of the commands that are usable at the current path. This includes builtin commands and commands that are listed in a projects app/commands
directory.
red5 list
Add Package
Adds a supported @red5
package to the current project.
red5 add <package-name>
The following steps are taken:
- Check the registry to make sure the package is a red5 package (
@red5/<package-name>
) - If the package exists, install it
npm i -s @red5/<package-name>
Remove Package
Removes a supported @red5
package from the current project.
red5 remove <package-name>
The following steps are taken:
- Check the registry to make sure the package is a red5 package (
@red5/<package-name>
) - If the package exists, remove it
npm rm -s @red5/<package-name>
List Packages
Displays a list of packages that can be installed via package:add
.
red5 package:list
Make Controller
Make controller can create 3 different types of controllers:
- A basic controller (default)
- An API controller
- A Resource controller
Creates a basic controller containing only a main
endpoint. This is the default action.
red5 make:controller <controller-name>
Creates an API controller containing only API endpoints
red5 make:controller <controller-name> --api
Creates a Resource controller containing all resource endpoints
red5 make:controller <controller-name> --resource
Make Middleware
Make Middleware will make middleware that can then be hooked into within your routes.
red5 make:middleware <middleware-name>
Start Server
Starts an instance of a red5 server application. This command will not hang the terminal and will start the server in the background. A pid
will be written to the red5.json
file in order to stop the service upon server:stop
.
The server will watch for file changes in: app
, config
and routes
. When a file changes the server will restart with the new changes.
Note: Calling server:start
repeatedly on the same project will shutdown the current running server if one started successfully and start a new one thus removing the need for a server:restart
command.
Note: If the server fails to start a new attempt will be taken to start the server. If the restart fails five times a restart attempt will not be taken a sixth time.
# Starts the server in the current directory
red5 server:start
# Start the server in the specified directory
red5 server:start /path/to/server/root
Stop Server
Stops an instance of a red5 server application. When the server is stopped, the pid
will be removed from the red5.json
file.
# Stops the server in the current directory
red5 server:stop
# Stops the server in the specified directory
red5 server:stop /path/to/server/root
Server Logging
Displays the tail of the server log file at storage/framework/logs/server.log
. This file will be created upon server:start
, and truncated upon server:stop
.
Note: Logging will not be logged to this file when in production mode.
# Shows the server log in the current directory
red5 server:log
# Shows the server log in the specified directory
red5 server:log /path/to/server/root
Server List
Displays all the servers that are currently running.
red5 server:list