2025-08-03 21:17:02 +00:00
# 🔐 @push.rocks/smarthash
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
> **Cross-environment hashing made simple** 🚀
> SHA256 and MD5 hash functions that work seamlessly in both Node.js and browsers, with zero configuration.
[](https://www.npmjs.com/package/@push .rocks/smarthash)
[](https://www.typescriptlang.org/)
[](#)
## ✨ Why SmartHash?
- 🌐 **Universal** : Works in Node.js AND browsers without polyfills
- ⚡ **Smart Fallbacks** : Automatically handles Web Crypto API limitations (like non-HTTPS environments)
- 🔧 **TypeScript First** : Full type safety and IntelliSense support
- 📦 **Dual Entry Points** : Optimized builds for both environments
- 🎯 **Simple API** : Consistent interface across all platforms
## 🚀 Quick Start
2024-04-14 17:40:33 +02:00
```bash
2025-08-03 21:17:02 +00:00
pnpm install @push .rocks/smarthash
2024-04-14 17:40:33 +02:00
```
2025-08-03 21:17:02 +00:00
## 📖 API Reference
2019-12-15 19:12:01 +00:00
2025-08-03 21:17:02 +00:00
### 🔤 String Hashing
2019-12-15 19:12:01 +00:00
2024-04-14 17:40:33 +02:00
```typescript
import { sha256FromString, sha256FromStringSync } from '@push .rocks/smarthash';
2025-08-03 21:17:02 +00:00
// Async (works everywhere)
const hash = await sha256FromString('Hello, world!');
console.log(hash); // 📄 64-character hex string
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
// Sync (Node.js only)
const hashSync = sha256FromStringSync('Hello, world!');
console.log(hashSync); // ⚡ Instant result
2024-04-14 17:40:33 +02:00
```
2019-12-15 19:12:01 +00:00
2025-08-03 21:17:02 +00:00
### 🗂️ File & Stream Hashing (Node.js Only)
2019-12-15 19:12:01 +00:00
```typescript
2025-08-03 21:17:02 +00:00
import { sha256FromFile, sha256FromStream } from '@push .rocks/smarthash';
import fs from 'fs';
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
// Hash files directly
const fileHash = await sha256FromFile('./myfile.txt');
console.log(fileHash); // 📁 File's SHA256 hash
// Hash streams (perfect for large files)
const stream = fs.createReadStream('./largefile.zip');
const streamHash = await sha256FromStream(stream);
console.log(streamHash); // 🌊 Stream's SHA256 hash
2019-12-15 19:12:01 +00:00
```
2025-08-03 21:17:02 +00:00
### 🧱 Buffer Hashing
2024-04-14 17:40:33 +02:00
```typescript
2025-08-03 21:17:02 +00:00
import { sha256FromBuffer } from '@push .rocks/smarthash';
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
// Works with both Buffer (Node.js) and Uint8Array (Browser)
const encoder = new TextEncoder();
const buffer = encoder.encode('Hello, world!');
const bufferHash = await sha256FromBuffer(buffer);
console.log(bufferHash); // 🔢 Buffer's SHA256 hash
2024-04-14 17:40:33 +02:00
```
2025-08-03 21:17:02 +00:00
### 🎯 Object Hashing
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
```typescript
import { sha256FromObject } from '@push .rocks/smarthash';
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
// Consistent hashing for JavaScript objects
const myObject = {
userId: 12345,
role: 'admin',
timestamp: Date.now()
2024-04-14 17:40:33 +02:00
};
2025-08-03 21:17:02 +00:00
const objectHash = await sha256FromObject(myObject);
console.log(objectHash); // 🎯 Deterministic object hash
2024-04-14 17:40:33 +02:00
```
2025-08-03 21:17:02 +00:00
> **🔥 Pro Tip**: Object property order doesn't matter! `{a: 1, b: 2}` and `{b: 2, a: 1}` produce the same hash.
### 🛡️ MD5 Hashing (Node.js Only)
2024-04-14 17:40:33 +02:00
```typescript
2025-08-03 21:17:02 +00:00
import { md5FromString } from '@push .rocks/smarthash';
2024-04-14 17:40:33 +02:00
2025-08-03 21:17:02 +00:00
// Legacy MD5 support (use SHA256 for new projects!)
const md5Hash = await md5FromString('Hello, world!');
console.log(md5Hash); // 🔐 32-character MD5 hash
2024-04-14 17:40:33 +02:00
```
2025-08-03 21:17:02 +00:00
## 🌍 Environment Compatibility
| Function | Node.js | Browser | Notes |
|----------|---------|---------|-------|
| `sha256FromString` | ✅ | ✅ | Universal support |
| `sha256FromStringSync` | ✅ | ❌ | Sync not possible in browsers |
| `sha256FromBuffer` | ✅ | ✅ | Handles Buffer/Uint8Array |
| `sha256FromFile` | ✅ | ❌ | File system access required |
| `sha256FromStream` | ✅ | ❌ | Node.js streams only |
| `sha256FromObject` | ✅ | ✅ | Uses JSON serialization |
| `md5FromString` | ✅ | ❌ | Not supported by Web Crypto API |
## 🔧 Advanced Usage
### Error Handling
2024-04-14 17:40:33 +02:00
```typescript
import { sha256FromString } from '@push .rocks/smarthash';
2025-08-03 21:17:02 +00:00
try {
const hash = await sha256FromString('sensitive data');
console.log(`✅ Hash computed: ${hash}` );
} catch (error) {
console.error('❌ Hashing failed:', error);
}
```
### Browser-Specific Features
In browsers, SmartHash automatically:
- 🔒 Uses Web Crypto API when available (HTTPS contexts)
- 🔄 Falls back to pure JavaScript implementation in non-HTTPS environments
- ⚠️ Warns when trying to use Node.js-only functions
### Import Strategies
```typescript
// Main entry point (Node.js optimized)
import { sha256FromString } from '@push .rocks/smarthash';
// Browser-specific entry point (smaller bundle)
import { sha256FromString } from '@push .rocks/smarthash/web';
```
## 🛠️ Development
```bash
# Run tests (both Node.js and browser)
pnpm test
# Build the project
pnpm build
# Generate documentation
pnpm buildDocs
2024-04-14 17:40:33 +02:00
```
2025-08-03 21:17:02 +00:00
## 🔐 Security Notes
- ✅ **SHA256** : Cryptographically secure, recommended for all use cases
- ⚠️ **MD5** : Legacy support only, not recommended for security-critical applications
- 🌍 **Cross-Environment** : Produces identical hashes across Node.js and browsers
- 🔒 **Web Crypto** : Uses native browser APIs when available for maximum performance
2024-04-14 17:40:33 +02:00
## License and Legal Information
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license ](license ) file within this repository.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
### Company Information
2019-12-15 19:12:01 +00:00
2024-04-14 17:40:33 +02:00
Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany
2019-12-15 19:12:01 +00:00
2024-04-14 17:40:33 +02:00
For any legal inquiries or if you require further information, please contact us via email at hello@task .vc.
2019-12-15 19:12:01 +00:00
2025-08-03 21:17:02 +00:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.