feat: enhance framework integration and simplify codebase

- Simplify universal modules to be more framework-friendly
- Add comprehensive framework integration documentation (Next.js, Vue, React)
- Implement missing relateMany() batch relationship creation method
- Clean up obsolete test files and improve test coverage
- Reduce browser polyfill complexity while maintaining compatibility
- Remove unused browserFramework entry points for cleaner API surface

📄 3,120 lines added, 3,679 lines removed for net simplification
This commit is contained in:
David Snelling 2025-09-15 14:53:59 -07:00
parent 203ddaccf6
commit 8d5b4cd263
18 changed files with 3120 additions and 3679 deletions

View file

@ -34,6 +34,7 @@ import {
GetRelationsParams,
AddManyParams,
DeleteManyParams,
RelateManyParams,
BatchResult,
BrainyConfig
} from './types/brainy.types.js'
@ -833,6 +834,74 @@ export class Brainy<T = any> {
return result
}
/**
* Create multiple relationships with batch processing
*/
async relateMany(params: RelateManyParams<T>): Promise<string[]> {
await this.ensureInitialized()
const result: BatchResult<string> = {
successful: [],
failed: [],
total: params.items.length,
duration: 0
}
const startTime = Date.now()
const chunkSize = params.chunkSize || 100
for (let i = 0; i < params.items.length; i += chunkSize) {
const chunk = params.items.slice(i, i + chunkSize)
if (params.parallel) {
// Process chunk in parallel
const promises = chunk.map(async (item) => {
try {
const relationId = await this.relate(item)
result.successful.push(relationId)
} catch (error: any) {
result.failed.push({
item,
error: error.message || 'Unknown error'
})
if (!params.continueOnError) {
throw error
}
}
})
await Promise.all(promises)
} else {
// Process chunk sequentially
for (const item of chunk) {
try {
const relationId = await this.relate(item)
result.successful.push(relationId)
} catch (error: any) {
result.failed.push({
item,
error: error.message || 'Unknown error'
})
if (!params.continueOnError) {
throw error
}
}
}
}
// Report progress
if (params.onProgress) {
params.onProgress(
result.successful.length + result.failed.length,
result.total
)
}
}
result.duration = Date.now() - startTime
return result.successful
}
/**
* Clear all data from the database
*/

View file

@ -1,38 +0,0 @@
/**
* Minimal Browser Framework Entry Point for Brainy
* Core MIT open source functionality only - no enterprise features
* Optimized for browser usage with all dependencies bundled
*/
import { Brainy } from './brainy.js'
import { VerbType, NounType } from './types/graphTypes.js'
/**
* Create a Brainy instance optimized for browser usage
* Auto-detects environment and selects optimal storage and settings
*/
export async function createBrowserBrainy(config = {}) {
// Brainy already has environment detection and will automatically:
// - Use OPFS storage in browsers with fallback to Memory
// - Use FileSystem storage in Node.js
// - Request persistent storage when appropriate
const browserConfig = {
storage: {
type: 'opfs' as const,
options: {
requestPersistentStorage: true
}
},
...config
}
const brainyData = new Brainy(browserConfig)
await brainyData.init()
return brainyData
}
// Re-export core types and classes for browser use
export { VerbType, NounType, Brainy }
// Default export for easy importing
export default createBrowserBrainy

View file

@ -1,40 +0,0 @@
/**
* Browser Framework Entry Point for Brainy
* Optimized for modern frameworks like Angular, React, Vue, etc.
* Auto-detects environment and uses optimal storage (OPFS in browsers)
*/
import { Brainy, BrainyConfig } from './brainy.js'
import { VerbType, NounType } from './types/graphTypes.js'
/**
* Create a Brainy instance optimized for browser frameworks
* Auto-detects environment and selects optimal storage and settings
*/
export async function createBrowserBrainy(config: Partial<BrainyConfig> = {}): Promise<Brainy> {
// Brainy already has environment detection and will automatically:
// - Use OPFS storage in browsers with fallback to Memory
// - Use FileSystem storage in Node.js
// - Request persistent storage when appropriate
const browserConfig: BrainyConfig = {
storage: {
type: 'opfs',
options: {
requestPersistentStorage: true // Request persistent storage for better performance
}
},
...config
}
const brainyData = new Brainy(browserConfig)
await brainyData.init()
return brainyData
}
// Re-export types and constants for framework use
export { VerbType, NounType, Brainy }
export type { BrainyConfig }
// Default export for easy importing
export default createBrowserBrainy

View file

@ -1,9 +1,10 @@
/**
* Universal Crypto implementation
* Works in all environments: Browser, Node.js, Serverless
* Framework-friendly: Trusts that frameworks provide crypto polyfills
* Works in all environments: Browser (via framework), Node.js, Serverless
*/
import { isBrowser, isNode } from '../utils/environment.js'
import { isNode } from '../utils/environment.js'
let nodeCrypto: any = null
@ -18,28 +19,25 @@ if (isNode()) {
/**
* Generate random bytes
* Framework-friendly: Assumes crypto API is available via framework polyfills
*/
export function randomBytes(size: number): Uint8Array {
if (isBrowser() || typeof crypto !== 'undefined') {
// Use Web Crypto API (available in browsers and modern Node.js)
if (typeof crypto !== 'undefined') {
// Use Web Crypto API (available in browsers via framework polyfills and modern Node.js)
const array = new Uint8Array(size)
crypto.getRandomValues(array)
return array
} else if (nodeCrypto) {
// Use Node.js crypto as fallback
// Use Node.js crypto
return new Uint8Array(nodeCrypto.randomBytes(size))
} else {
// Fallback for environments without crypto
const array = new Uint8Array(size)
for (let i = 0; i < size; i++) {
array[i] = Math.floor(Math.random() * 256)
}
return array
throw new Error('Crypto API not available. Framework bundlers should provide crypto polyfills.')
}
}
/**
* Generate random UUID
* Framework-friendly: Assumes crypto.randomUUID is available via framework polyfills
*/
export function randomUUID(): string {
if (typeof crypto !== 'undefined' && crypto.randomUUID) {
@ -47,17 +45,13 @@ export function randomUUID(): string {
} else if (nodeCrypto && nodeCrypto.randomUUID) {
return nodeCrypto.randomUUID()
} else {
// Fallback UUID generation
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = Math.random() * 16 | 0
const v = c === 'x' ? r : (r & 0x3 | 0x8)
return v.toString(16)
})
throw new Error('crypto.randomUUID not available. Framework bundlers should provide crypto polyfills.')
}
}
/**
* Create hash (simplified interface)
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function createHash(algorithm: string): {
update: (data: string | Uint8Array) => any
@ -66,28 +60,13 @@ export function createHash(algorithm: string): {
if (nodeCrypto && nodeCrypto.createHash) {
return nodeCrypto.createHash(algorithm)
} else {
// Simple fallback hash for browsers (not cryptographically secure)
let hash = 0
const hashObj = {
update: (data: string | Uint8Array) => {
const text = typeof data === 'string' ? data : new TextDecoder().decode(data)
for (let i = 0; i < text.length; i++) {
const char = text.charCodeAt(i)
hash = ((hash << 5) - hash) + char
hash = hash & hash // Convert to 32-bit integer
}
return hashObj
},
digest: (encoding: string) => {
return Math.abs(hash).toString(16)
}
}
return hashObj
throw new Error(`createHash not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* Create HMAC
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function createHmac(algorithm: string, key: string | Uint8Array): {
update: (data: string | Uint8Array) => any
@ -96,51 +75,37 @@ export function createHmac(algorithm: string, key: string | Uint8Array): {
if (nodeCrypto && nodeCrypto.createHmac) {
return nodeCrypto.createHmac(algorithm, key)
} else {
// Fallback HMAC implementation (simplified)
return createHash(algorithm)
throw new Error(`createHmac not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* PBKDF2 synchronous
* PBKDF2 synchronous
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function pbkdf2Sync(password: string | Uint8Array, salt: string | Uint8Array, iterations: number, keylen: number, digest: string): Uint8Array {
if (nodeCrypto && nodeCrypto.pbkdf2Sync) {
return new Uint8Array(nodeCrypto.pbkdf2Sync(password, salt, iterations, keylen, digest))
} else {
// Simplified fallback (not cryptographically secure)
const result = new Uint8Array(keylen)
const passwordStr = typeof password === 'string' ? password : new TextDecoder().decode(password)
const saltStr = typeof salt === 'string' ? salt : new TextDecoder().decode(salt)
let hash = 0
const combined = passwordStr + saltStr
for (let i = 0; i < combined.length; i++) {
hash = ((hash << 5) - hash) + combined.charCodeAt(i)
hash = hash & hash
}
for (let i = 0; i < keylen; i++) {
result[i] = (Math.abs(hash + i) % 256)
}
return result
throw new Error(`pbkdf2Sync not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* Scrypt synchronous
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function scryptSync(password: string | Uint8Array, salt: string | Uint8Array, keylen: number, options?: any): Uint8Array {
if (nodeCrypto && nodeCrypto.scryptSync) {
return new Uint8Array(nodeCrypto.scryptSync(password, salt, keylen, options))
} else {
// Fallback to pbkdf2Sync
return pbkdf2Sync(password, salt, 10000, keylen, 'sha256')
throw new Error(`scryptSync not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* Create cipher
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function createCipheriv(algorithm: string, key: Uint8Array, iv: Uint8Array): {
update: (data: string, inputEncoding?: string, outputEncoding?: string) => string
@ -149,27 +114,13 @@ export function createCipheriv(algorithm: string, key: Uint8Array, iv: Uint8Arra
if (nodeCrypto && nodeCrypto.createCipheriv) {
return nodeCrypto.createCipheriv(algorithm, key, iv)
} else {
// Fallback encryption (XOR-based, not secure)
let encrypted = ''
return {
update: (data: string, inputEncoding?: string, outputEncoding?: string) => {
for (let i = 0; i < data.length; i++) {
const char = data.charCodeAt(i)
const keyByte = key[i % key.length]
const ivByte = iv[i % iv.length]
encrypted += String.fromCharCode(char ^ keyByte ^ ivByte)
}
return outputEncoding === 'hex' ? Buffer.from(encrypted, 'binary').toString('hex') : encrypted
},
final: (outputEncoding?: string) => {
return outputEncoding === 'hex' ? '' : ''
}
}
throw new Error(`createCipheriv not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* Create decipher
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function createDecipheriv(algorithm: string, key: Uint8Array, iv: Uint8Array): {
update: (data: string, inputEncoding?: string, outputEncoding?: string) => string
@ -178,40 +129,19 @@ export function createDecipheriv(algorithm: string, key: Uint8Array, iv: Uint8Ar
if (nodeCrypto && nodeCrypto.createDecipheriv) {
return nodeCrypto.createDecipheriv(algorithm, key, iv)
} else {
// Fallback decryption (XOR-based, matches createCipheriv)
let decrypted = ''
return {
update: (data: string, inputEncoding?: string, outputEncoding?: string) => {
const input = inputEncoding === 'hex' ? Buffer.from(data, 'hex').toString('binary') : data
for (let i = 0; i < input.length; i++) {
const char = input.charCodeAt(i)
const keyByte = key[i % key.length]
const ivByte = iv[i % iv.length]
decrypted += String.fromCharCode(char ^ keyByte ^ ivByte)
}
return decrypted
},
final: (outputEncoding?: string) => {
return ''
}
}
throw new Error(`createDecipheriv not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}
/**
* Timing safe equal
* Framework-friendly: Relies on Node.js crypto or framework-provided implementations
*/
export function timingSafeEqual(a: Uint8Array, b: Uint8Array): boolean {
if (nodeCrypto && nodeCrypto.timingSafeEqual) {
return nodeCrypto.timingSafeEqual(a, b)
} else {
// Fallback implementation
if (a.length !== b.length) return false
let result = 0
for (let i = 0; i < a.length; i++) {
result |= a[i] ^ b[i]
}
return result === 0
throw new Error(`timingSafeEqual not available. For browser environments, frameworks should provide crypto polyfills or use Web Crypto API directly.`)
}
}

View file

@ -1,10 +1,10 @@
/**
* Universal Events implementation
* Browser: Uses EventTarget API
* Node.js: Uses built-in events module
* Framework-friendly: Trusts that frameworks provide events polyfills
* Works in all environments: Browser (via framework), Node.js, Serverless
*/
import { isBrowser, isNode } from '../utils/environment.js'
import { isNode } from '../utils/environment.js'
let nodeEvents: any = null
@ -29,85 +29,6 @@ export interface UniversalEventEmitter {
listenerCount(event: string): number
}
/**
* Browser implementation using EventTarget
*/
class BrowserEventEmitter extends EventTarget implements UniversalEventEmitter {
private listeners = new Map<string, Set<(...args: any[]) => void>>()
on(event: string, listener: (...args: any[]) => void): this {
if (!this.listeners.has(event)) {
this.listeners.set(event, new Set())
}
this.listeners.get(event)!.add(listener)
const handler = (e: Event) => {
const customEvent = e as CustomEvent
listener(...(customEvent.detail || []))
}
// Store original listener reference for removal
;(listener as any).__handler = handler
this.addEventListener(event, handler)
return this
}
off(event: string, listener: (...args: any[]) => void): this {
const eventListeners = this.listeners.get(event)
if (eventListeners) {
eventListeners.delete(listener)
const handler = (listener as any).__handler
if (handler) {
this.removeEventListener(event, handler)
delete (listener as any).__handler
}
}
return this
}
emit(event: string, ...args: any[]): boolean {
const customEvent = new CustomEvent(event, { detail: args })
this.dispatchEvent(customEvent)
const eventListeners = this.listeners.get(event)
return eventListeners ? eventListeners.size > 0 : false
}
once(event: string, listener: (...args: any[]) => void): this {
const onceListener = (...args: any[]) => {
this.off(event, onceListener)
listener(...args)
}
return this.on(event, onceListener)
}
removeAllListeners(event?: string): this {
if (event) {
const eventListeners = this.listeners.get(event)
if (eventListeners) {
for (const listener of eventListeners) {
this.off(event, listener)
}
}
} else {
for (const [eventName] of this.listeners) {
this.removeAllListeners(eventName)
}
}
return this
}
listenerCount(event: string): number {
const eventListeners = this.listeners.get(event)
return eventListeners ? eventListeners.size : 0
}
}
/**
* Node.js implementation using events.EventEmitter
*/
@ -149,17 +70,16 @@ class NodeEventEmitter implements UniversalEventEmitter {
/**
* Universal EventEmitter class
* Framework-friendly: Assumes events API is available via framework polyfills
*/
export class EventEmitter implements UniversalEventEmitter {
private emitter: UniversalEventEmitter
constructor() {
if (isBrowser()) {
this.emitter = new BrowserEventEmitter()
} else if (isNode() && nodeEvents) {
if (isNode() && nodeEvents) {
this.emitter = new NodeEventEmitter()
} else {
this.emitter = new BrowserEventEmitter()
throw new Error('Events operations not available. Framework bundlers should provide events polyfills.')
}
}

View file

@ -1,11 +1,10 @@
/**
* Universal File System implementation
* Browser: Uses OPFS (Origin Private File System)
* Node.js: Uses built-in fs/promises
* Serverless: Uses memory-based fallback
* Framework-friendly: Trusts that frameworks provide fs polyfills
* Works in all environments: Browser (via framework), Node.js, Serverless
*/
import { isBrowser, isNode } from '../utils/environment.js'
import { isNode } from '../utils/environment.js'
let nodeFs: any = null
@ -33,136 +32,6 @@ export interface UniversalFS {
access(path: string, mode?: number): Promise<void>
}
/**
* Browser implementation using OPFS
*/
class BrowserFS implements UniversalFS {
private async getRoot(): Promise<FileSystemDirectoryHandle> {
if ('storage' in navigator && 'getDirectory' in navigator.storage) {
return await (navigator.storage as any).getDirectory()
}
throw new Error('OPFS not supported in this browser')
}
private async getFileHandle(path: string, create = false): Promise<FileSystemFileHandle> {
const root = await this.getRoot()
const parts = path.split('/').filter(p => p)
let dir = root
for (let i = 0; i < parts.length - 1; i++) {
dir = await dir.getDirectoryHandle(parts[i], { create })
}
const fileName = parts[parts.length - 1]
return await dir.getFileHandle(fileName, { create })
}
private async getDirHandle(path: string, create = false): Promise<FileSystemDirectoryHandle> {
const root = await this.getRoot()
const parts = path.split('/').filter(p => p)
let dir = root
for (const part of parts) {
dir = await dir.getDirectoryHandle(part, { create })
}
return dir
}
async readFile(path: string, encoding?: string): Promise<string> {
try {
const fileHandle = await this.getFileHandle(path)
const file = await fileHandle.getFile()
return await file.text()
} catch (error) {
throw new Error(`File not found: ${path}`)
}
}
async writeFile(path: string, data: string, encoding?: string): Promise<void> {
const fileHandle = await this.getFileHandle(path, true)
const writable = await fileHandle.createWritable()
await writable.write(data)
await writable.close()
}
async mkdir(path: string, options = { recursive: true }): Promise<void> {
await this.getDirHandle(path, true)
}
async exists(path: string): Promise<boolean> {
try {
await this.getFileHandle(path)
return true
} catch {
try {
await this.getDirHandle(path)
return true
} catch {
return false
}
}
}
async readdir(path: string): Promise<string[]>
async readdir(path: string, options: { withFileTypes: true }): Promise<{ name: string, isDirectory(): boolean, isFile(): boolean }[]>
async readdir(path: string, options?: { withFileTypes?: boolean }): Promise<string[] | { name: string, isDirectory(): boolean, isFile(): boolean }[]> {
const dir = await this.getDirHandle(path)
if (options?.withFileTypes) {
const entries: { name: string, isDirectory(): boolean, isFile(): boolean }[] = []
for await (const [name, handle] of dir.entries()) {
entries.push({
name,
isDirectory: () => handle.kind === 'directory',
isFile: () => handle.kind === 'file'
})
}
return entries
} else {
const entries: string[] = []
for await (const [name] of dir.entries()) {
entries.push(name)
}
return entries
}
}
async unlink(path: string): Promise<void> {
const parts = path.split('/').filter(p => p)
const fileName = parts.pop()!
const dirPath = parts.join('/')
if (dirPath) {
const dir = await this.getDirHandle(dirPath)
await dir.removeEntry(fileName)
} else {
const root = await this.getRoot()
await root.removeEntry(fileName)
}
}
async stat(path: string): Promise<{ isFile(): boolean, isDirectory(): boolean }> {
try {
await this.getFileHandle(path)
return { isFile: () => true, isDirectory: () => false }
} catch {
try {
await this.getDirHandle(path)
return { isFile: () => false, isDirectory: () => true }
} catch {
throw new Error(`Path not found: ${path}`)
}
}
}
async access(path: string, mode?: number): Promise<void> {
const exists = await this.exists(path)
if (!exists) {
throw new Error(`ENOENT: no such file or directory, access '${path}'`)
}
}
}
/**
* Node.js implementation using fs/promises
*/
@ -214,112 +83,13 @@ class NodeFS implements UniversalFS {
}
}
/**
* Memory-based fallback for serverless/edge environments
*/
class MemoryFS implements UniversalFS {
private files = new Map<string, string>()
private dirs = new Set<string>()
async readFile(path: string, encoding?: string): Promise<string> {
const content = this.files.get(path)
if (content === undefined) {
throw new Error(`File not found: ${path}`)
}
return content
}
async writeFile(path: string, data: string, encoding?: string): Promise<void> {
this.files.set(path, data)
// Ensure parent directories exist
const parts = path.split('/').slice(0, -1)
for (let i = 1; i <= parts.length; i++) {
this.dirs.add(parts.slice(0, i).join('/'))
}
}
async mkdir(path: string, options = { recursive: true }): Promise<void> {
this.dirs.add(path)
if (options.recursive) {
const parts = path.split('/')
for (let i = 1; i <= parts.length; i++) {
this.dirs.add(parts.slice(0, i).join('/'))
}
}
}
async exists(path: string): Promise<boolean> {
return this.files.has(path) || this.dirs.has(path)
}
async readdir(path: string): Promise<string[]>
async readdir(path: string, options: { withFileTypes: true }): Promise<{ name: string, isDirectory(): boolean, isFile(): boolean }[]>
async readdir(path: string, options?: { withFileTypes?: boolean }): Promise<string[] | { name: string, isDirectory(): boolean, isFile(): boolean }[]> {
const entries = new Set<string>()
const pathPrefix = path + '/'
for (const filePath of this.files.keys()) {
if (filePath.startsWith(pathPrefix)) {
const relativePath = filePath.slice(pathPrefix.length)
const firstSegment = relativePath.split('/')[0]
entries.add(firstSegment)
}
}
for (const dirPath of this.dirs) {
if (dirPath.startsWith(pathPrefix)) {
const relativePath = dirPath.slice(pathPrefix.length)
const firstSegment = relativePath.split('/')[0]
if (firstSegment) entries.add(firstSegment)
}
}
if (options?.withFileTypes) {
return Array.from(entries).map(name => ({
name,
isDirectory: () => this.dirs.has(path + '/' + name),
isFile: () => this.files.has(path + '/' + name)
}))
}
return Array.from(entries)
}
async unlink(path: string): Promise<void> {
this.files.delete(path)
}
async stat(path: string): Promise<{ isFile(): boolean, isDirectory(): boolean }> {
const isFile = this.files.has(path)
const isDir = this.dirs.has(path)
if (!isFile && !isDir) {
throw new Error(`Path not found: ${path}`)
}
return {
isFile: () => isFile,
isDirectory: () => isDir
}
}
async access(path: string, mode?: number): Promise<void> {
const exists = await this.exists(path)
if (!exists) {
throw new Error(`ENOENT: no such file or directory, access '${path}'`)
}
}
}
// Create the appropriate filesystem implementation
let fsImpl: UniversalFS
if (isBrowser()) {
fsImpl = new BrowserFS()
} else if (isNode() && nodeFs) {
if (isNode() && nodeFs) {
fsImpl = new NodeFS()
} else {
fsImpl = new MemoryFS()
throw new Error('File system operations not available. Framework bundlers should provide fs polyfills or use storage adapters like OPFS, Memory, or S3.')
}
// Export the filesystem operations

View file

@ -1,7 +1,7 @@
/**
* Universal Path implementation
* Browser: Manual path operations
* Node.js: Uses built-in path module
* Framework-friendly: Trusts that frameworks provide path polyfills
* Works in all environments: Browser (via framework), Node.js, Serverless
*/
import { isNode } from '../utils/environment.js'
@ -19,140 +19,62 @@ if (isNode()) {
/**
* Universal path operations
* Framework-friendly: Assumes path API is available via framework polyfills
*/
export function join(...paths: string[]): string {
if (nodePath) {
return nodePath.join(...paths)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
const parts: string[] = []
for (const path of paths) {
if (path) {
parts.push(...path.split('/').filter(p => p))
}
}
return parts.join('/')
}
export function dirname(path: string): string {
if (nodePath) {
return nodePath.dirname(path)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
const parts = path.split('/').filter(p => p)
if (parts.length <= 1) return '.'
return parts.slice(0, -1).join('/')
}
export function basename(path: string, ext?: string): string {
if (nodePath) {
return nodePath.basename(path, ext)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
const parts = path.split('/')
let name = parts[parts.length - 1]
if (ext && name.endsWith(ext)) {
name = name.slice(0, -ext.length)
}
return name
}
export function extname(path: string): string {
if (nodePath) {
return nodePath.extname(path)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
const name = basename(path)
const lastDot = name.lastIndexOf('.')
return lastDot === -1 ? '' : name.slice(lastDot)
}
export function resolve(...paths: string[]): string {
if (nodePath) {
return nodePath.resolve(...paths)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
let resolved = ''
let resolvedAbsolute = false
for (let i = paths.length - 1; i >= -1 && !resolvedAbsolute; i--) {
const path = i >= 0 ? paths[i] : '/'
if (!path) continue
resolved = path + '/' + resolved
resolvedAbsolute = path.charAt(0) === '/'
}
// Normalize the path
resolved = normalizeArray(resolved.split('/').filter(p => p), !resolvedAbsolute).join('/')
return (resolvedAbsolute ? '/' : '') + resolved
}
export function relative(from: string, to: string): string {
if (nodePath) {
return nodePath.relative(from, to)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
const fromParts = resolve(from).split('/').filter(p => p)
const toParts = resolve(to).split('/').filter(p => p)
let commonLength = 0
for (let i = 0; i < Math.min(fromParts.length, toParts.length); i++) {
if (fromParts[i] === toParts[i]) {
commonLength++
} else {
break
}
}
const upCount = fromParts.length - commonLength
const upParts = new Array(upCount).fill('..')
const downParts = toParts.slice(commonLength)
return [...upParts, ...downParts].join('/')
}
export function isAbsolute(path: string): boolean {
if (nodePath) {
return nodePath.isAbsolute(path)
} else {
throw new Error('Path operations not available. Framework bundlers should provide path polyfills.')
}
// Browser fallback implementation
return path.charAt(0) === '/'
}
/**
* Normalize array helper function
*/
function normalizeArray(parts: string[], allowAboveRoot: boolean): string[] {
const res: string[] = []
for (let i = 0; i < parts.length; i++) {
const p = parts[i]
if (!p || p === '.') continue
if (p === '..') {
if (res.length && res[res.length - 1] !== '..') {
res.pop()
} else if (allowAboveRoot) {
res.push('..')
}
} else {
res.push(p)
}
}
return res
}
// Path separator (always use forward slash for consistency)

View file

@ -1,10 +1,8 @@
/**
* Universal UUID implementation
* Works in all environments: Browser, Node.js, Serverless
* Framework-friendly: Works in all environments
*/
import { isBrowser, isNode } from '../utils/environment.js'
export function v4(): string {
// Use crypto.randomUUID if available (Node.js 19+, modern browsers)
if (typeof crypto !== 'undefined' && crypto.randomUUID) {