General Purpose
Balanced compute, memory, and networking resources for web servers, application servers, and development environments.
Starting at $0.007/hr
Elastic compute, managed services, and global deployment capabilities with API-driven provisioning and per-second billing. Scale from prototype to production seamlessly.
Choose from purpose-built instance families optimized for different workload characteristics. All instances feature NVMe instance storage, enhanced networking, and automatic recovery.
Balanced compute, memory, and networking resources for web servers, application servers, and development environments.
Starting at $0.007/hr
High processor performance for batch processing, scientific modeling, ad serving, and video encoding workloads.
Starting at $0.017/hr
High memory-to-CPU ratio for in-memory databases, real-time big data analytics, and cache layers.
Starting at $0.033/hr
Leverage our managed services to offload operational overhead. Our platform handles provisioning, patching, backups, and failover so your team can focus on building products.
Production-ready Kubernetes clusters with automated control plane management, etcd backups, and security patching. Built-in autoscaling, service mesh integration, and GitOps workflows.
Fully managed PostgreSQL, MySQL, MongoDB, and Redis with automated failover, point-in-time recovery, and read replicas. Cross-region replication for disaster recovery.
S3-compatible object storage with 99.999999999% durability. Automatic tiering, lifecycle policies, and edge caching for static asset delivery.
Event-driven compute without server management. Sub-second cold starts, automatic scaling, and pay-per-execution pricing model.
Global and regional load balancers with SSL termination, health checks, and intelligent traffic routing. Support for HTTP(S), TCP, and UDP protocols.
Private Docker registry with vulnerability scanning, image signing, and geo-replicated storage for fast pulls across all regions.
Node Hawk provides first-class support for Infrastructure as Code workflows. Define, version, and deploy infrastructure using familiar tools with our officially maintained providers and SDKs.
Full resource coverage with state management
Use TypeScript, Python, Go, or .NET
Python, JavaScript, Go, Ruby clients
Configuration management modules
# main.tf - Node Hawk Terraform Example
terraform {
required_providers {
nhawk = {
source = "nodehawk/nhawk"
version = "~> 2.0"
}
}
}
provider "nhawk" {
api_token = var.nhawk_api_token
}
resource "nhawk_instance" "web" {
count = 3
name = "web-${count.index}"
region = "us-east-1"
instance_type = "g3.large"
image = "ubuntu-22.04"
tags = {
Environment = "production"
Role = "webserver"
}
}
resource "nhawk_load_balancer" "web" {
name = "web-lb"
region = "us-east-1"
protocol = "https"
target_instances = nhawk_instance.web[*].id
health_check {
interval = 10
path = "/health"
}
}
output "load_balancer_ip" {
value = nhawk_load_balancer.web.ip_address
}
Per-second billing with no hidden fees. Estimate your monthly costs with our pricing calculator.
Get started with $200 in free credits. Deploy your first instance and experience the Node Hawk platform.