47
Global Regions
<60s
Instance Provisioning
Per-Second
Billing Granularity
99.99%
Availability SLA

Elastic Instance Families

Choose from purpose-built instance families optimized for different workload characteristics. All instances feature NVMe instance storage, enhanced networking, and automatic recovery.

General Purpose

Balanced compute, memory, and networking resources for web servers, application servers, and development environments.

Instance Types g3.nano - g3.8xlarge
vCPUs 1 - 32
Memory 1GB - 128GB
Network Up to 25Gbps

Starting at $0.007/hr

Compute Optimized

High processor performance for batch processing, scientific modeling, ad serving, and video encoding workloads.

Instance Types c3.small - c3.metal
vCPUs 2 - 96
Memory 4GB - 384GB
Network Up to 100Gbps

Starting at $0.017/hr

Memory Optimized

High memory-to-CPU ratio for in-memory databases, real-time big data analytics, and cache layers.

Instance Types m3.large - m3.8xlarge
vCPUs 2 - 64
Memory 16GB - 1TB
Network Up to 50Gbps

Starting at $0.033/hr

Focus on Applications, Not Infrastructure

Leverage our managed services to offload operational overhead. Our platform handles provisioning, patching, backups, and failover so your team can focus on building products.

Managed Kubernetes

Production-ready Kubernetes clusters with automated control plane management, etcd backups, and security patching. Built-in autoscaling, service mesh integration, and GitOps workflows.

  • Automatic control plane scaling
  • Cilium CNI with eBPF
  • Integrated monitoring stack

Managed Databases

Fully managed PostgreSQL, MySQL, MongoDB, and Redis with automated failover, point-in-time recovery, and read replicas. Cross-region replication for disaster recovery.

  • Automated backups & PITR
  • High availability with automatic failover
  • Connection pooling built-in

Object Storage

S3-compatible object storage with 99.999999999% durability. Automatic tiering, lifecycle policies, and edge caching for static asset delivery.

  • S3 API compatible
  • CDN integration included
  • Server-side encryption

Serverless Functions

Event-driven compute without server management. Sub-second cold starts, automatic scaling, and pay-per-execution pricing model.

  • Node.js, Python, Go, Rust
  • Webhook & queue triggers
  • Edge function deployment

Load Balancing

Global and regional load balancers with SSL termination, health checks, and intelligent traffic routing. Support for HTTP(S), TCP, and UDP protocols.

  • Anycast global load balancing
  • Managed SSL certificates
  • Weighted round-robin routing

Container Registry

Private Docker registry with vulnerability scanning, image signing, and geo-replicated storage for fast pulls across all regions.

  • Trivy vulnerability scanning
  • SBOM generation
  • Integrated build pipelines

Infrastructure as Code

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.

Terraform Provider

Full resource coverage with state management

Pulumi Provider

Use TypeScript, Python, Go, or .NET

CLI & SDKs

Python, JavaScript, Go, Ruby clients

Ansible Collection

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
}

Pay for What You Use

Per-second billing with no hidden fees. Estimate your monthly costs with our pricing calculator.

Estimated Monthly Cost
$15.15
View Full Pricing

Deploy Globally in Seconds

Get started with $200 in free credits. Deploy your first instance and experience the Node Hawk platform.