mcard-js
Version:
A JavaScript implementation of MCard - A data model for persistently storing content with cryptographic hashing and timestamping
20 lines (18 loc) • 516 B
JavaScript
import fs from 'fs';
import path from 'path';
export const writeToJsonl = async (logEntry) => {
try {
const response = await fetch('/api/write-log', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(logEntry)
});
if (!response.ok) {
console.error('Failed to write log');
}
} catch (error) {
console.error('Error writing log:', error);
}
};