apm alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view apm alternatives based on common mentions on social networks and blogs.
-
项目文档
基于vite+vue3+gin搭建的开发基础平台(支持TS,JS混用),集成jwt鉴权,权限管理,动态路由,显隐可控组件,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器,chatGPT自动查表等开发必备功能。 -
excelize
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets -
godotenv
A Go port of Ruby's dotenv library (Loads environment variables from .env files) -
Kopia
Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. -
go-funk
A modern Go utility library which provides helpers (map, find, contains, filter, ...) -
gorequest
GoRequest -- Simplified HTTP client ( inspired by nodejs SuperAgent ) -
goreporter
A Golang tool that does static analysis, unit testing, code review and generate code quality report. -
gojson
Automatically generate Go (golang) struct definitions from example JSON -
create-go-app
✨ A complete and self-contained solution for developers of any qualification to create a production-ready project with backend (Go), frontend (JavaScript, TypeScript) and deploy automation (Ansible, Docker) by running only one CLI command. -
EaseProbe
A simple, standalone, and lightweight tool that can do health/status checking, written in Go. -
spinner
Go (golang) package with 90 configurable terminal spinner/progress indicators. -
filetype
Fast, dependency-free Go package to infer binary file types based on the magic numbers header signature -
boilr
:zap: boilerplate template manager that generates files or directories from template repositories -
mole
CLI application to create ssh tunnels focused on resiliency and user experience. -
beaver
💨 A real time messaging system to build a scalable in-app notifications, multiplayer games, chat apps in web and mobile apps. -
mimetype
A fast Golang library for media type and file extension detection, based on magic numbers -
go-underscore
Helpfully Functional Go - A useful collection of Go utilities. Designed for programmer happiness. -
JobRunner
Framework for performing work asynchronously, outside of the request flow
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of apm or a related project?
Popular Comparisons
README
A(guia) P(rocess) M(anager)
APM - Aguia Process Manager
APM is a lightweight process manager written in Golang for Golang applications. It helps you keep your applications alive forever, reload and start them from the source code.
Starting an application is easy:
$ ./apm bin app-name --source="github.com/topfreegames/apm"
This will basically compile your project source code and start it as a
daemon in the background. The application will have already be
downloaded into GOPATH
issuing something like
go get github.com/topfreegames/apm
You will probably be able to run anything in any directory, as long as
it is under GOPATH
Install APM
$ go get github.com/topfreegames/apm
Start APM
In order to properly use APM, you always need to start a server. This will be changed in the next version, but in the meantime you need to run the command bellow to start using APM.
$ apm serve
If no config file is provided, it will default to a folder '.apmenv' where apm
is first started.
Stop APM
$ apm serve-stop
Starting a new application
If it's the first time you are starting a new golang application, you need to tell APM to first build its binary. Then you need to first run:
$ apm bin app-name --source="github.com/yourproject/project"
This will automatically compile, start and daemonize your application. If you need to later on, stop, restart or delete your app from APM, you can just run normal commands using the app-name you specified. Example:
$ apm stop app-name
$ apm restart app-name
$ apm delete app-name
Main features
Commands overview
$ apm serve --config-file="config/file/path.toml"
$ apm serve-stop --config-file="config/file/path.toml"
$ apm bin app-name --source="github.com/topfreegames/apm" # Compile, start, daemonize and auto restart application.
$ apm start app-name # Start, daemonize and auto restart application.
$ apm restart app-name # Restart a previously saved process
$ apm stop app-name # Stop application.
$ apm delete app-name # Delete application forever.
$ apm save # Save current process list
$ apm resurrect # Restore previously saved processes
$ apm status # Display status for each app.
Managing process via HTTP
You can also use all of the above commands via HTTP requests. Just set the flag --dns
together with ./apm serve
and then you can use a remote client to start, stop, delete and query status for each app.