HyperCube.Postman 0.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package HyperCube.Postman --version 0.0.2
                    
NuGet\Install-Package HyperCube.Postman -Version 0.0.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HyperCube.Postman" Version="0.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HyperCube.Postman" Version="0.0.2" />
                    
Directory.Packages.props
<PackageReference Include="HyperCube.Postman" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add HyperCube.Postman --version 0.0.2
                    
#r "nuget: HyperCube.Postman, 0.0.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=HyperCube.Postman&version=0.0.2
                    
Install HyperCube.Postman as a Cake Addin
#tool nuget:?package=HyperCube.Postman&version=0.0.2
                    
Install HyperCube.Postman as a Cake Tool

HyperCube Framework

alternate text is missing from this package README image

Overview

HyperCube is a high-performance, modular framework designed to accelerate development of:

  • Console applications
  • Server applications
  • Web applications (backend)

Built with a focus on modularity, documentation, and developer experience, HyperCube provides the building blocks for creating robust applications quickly and efficiently.

Features

  • Modular Architecture: Build your application using composable modules that can be easily reused across projects
  • Comprehensive Utilities: Ready-to-use utility classes for common operations:
    • String manipulation (case conversions, environment variable handling)
    • Cryptography (hashing, encryption, password management)
    • JSON & YAML serialization with AOT support
    • IP address handling
  • Performance Optimized: Built with AOT (Ahead-of-Time) compilation support
  • Well Documented: Thorough XML documentation for all components
  • Developer Friendly: Intuitive API design with consistent patterns

Installation

dotnet add package HyperCube.Core

Core Utilities

String Manipulation

using HyperCube.Core.Utils;
using HyperCube.Core.Extensions;

// Case conversions
var snakeCase = "HelloWorld".ToSnakeCase();  // "hello_world"
var kebabCase = "HelloWorld".ToKebabCase();  // "hello-world"
var camelCase = "Hello_World".ToCamelCase(); // "helloWorld"

// Environment variable replacement
var path = "{HOME}/documents".ReplaceEnvVariable();  // "/home/user/documents"

Cryptography

using HyperCube.Core.Utils;

// Simple hashing
var hash = HashUtils.ComputeSha256Hash("sensitive data");

// Password management
var passwordHash = HashUtils.CreatePassword("secure_password");  // Returns "Hash:Salt"
var isValid = HashUtils.VerifyPassword("secure_password", passwordHash);  // true

// Encryption/Decryption
var key = Convert.FromBase64String(HashUtils.GenerateBase64Key());
var encrypted = HashUtils.Encrypt("secret message", key);
var decrypted = HashUtils.Decrypt(encrypted, key);  // "secret message"

JSON Handling with AOT Support

using HyperCube.Core.Utils;
using System.Text.Json.Serialization;

// Define your context for AOT support
[JsonSourceGenerationOptions(
    PropertyNamingPolicy = JsonKnownNamingPolicy.SnakeCaseLower,
    WriteIndented = true)]
[JsonSerializable(typeof(MyClass))]
public partial class MyJsonContext : JsonSerializerContext {}

// Serialize/deserialize with AOT support
var json = JsonUtils.Serialize(myObject, MyJsonContext.Default);
var obj = JsonUtils.Deserialize<MyClass>(json, MyJsonContext.Default);

// Or use extension methods
var json = myObject.ToJson(MyJsonContext.Default);
var obj = json.FromJson<MyClass>(MyJsonContext.Default);

License

HyperCube is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on HyperCube.Postman:

Package Downloads
HyperCube.Server.Core

Core server components for the HyperCube framework. Provides service management, DI, configuration, console, logging, and hosting capabilities.

HyperCube.ScriptEngine.Core

Script engine core for HyperCube framework. Provides advanced scripting capabilities based on Jint

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.11 429 4/15/2025
0.0.10 191 4/15/2025
0.0.9 192 4/13/2025
0.0.8 125 4/13/2025
0.0.7 120 4/13/2025
0.0.6 81 4/12/2025
0.0.5 104 4/11/2025
0.0.4 112 4/11/2025
0.0.2 115 4/11/2025