Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@remix-run/node

Package Overview
Dependencies
Maintainers
2
Versions
1030
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remix-run/node - npm Package Compare versions

Comparing version 0.0.0-nightly-49e8da1-20230823 to 0.0.0-nightly-4a957276b-20240918

2

dist/crypto.js
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -4,0 +4,0 @@ * Copyright (c) Remix Software Inc.

@@ -1,2 +0,1 @@

import { atob, btoa } from "./base64";
declare global {

@@ -8,5 +7,2 @@ namespace NodeJS {

interface Global {
atob: typeof atob;
btoa: typeof btoa;
Blob: typeof Blob;
File: typeof File;

@@ -22,3 +18,8 @@ Headers: typeof Headers;

}
interface RequestInit {
duplex?: "half";
}
}
export declare function installGlobals(): void;
export declare function installGlobals({ nativeFetch, }?: {
nativeFetch?: boolean;
}): void;
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -15,22 +15,38 @@ * Copyright (c) Remix Software Inc.

var webStream = require('@remix-run/web-stream');
var base64 = require('./base64.js');
var fetch = require('./fetch.js');
var webFile = require('@remix-run/web-file');
var webFetch = require('@remix-run/web-fetch');
function installGlobals() {
global.atob = base64.atob;
global.btoa = base64.btoa;
global.Blob = webFile.Blob;
global.File = webFile.File;
global.Headers = webFetch.Headers;
global.Request = fetch.Request;
global.Response = fetch.Response;
global.fetch = fetch.fetch;
global.FormData = webFetch.FormData;
global.ReadableStream = webStream.ReadableStream;
global.WritableStream = webStream.WritableStream;
function installGlobals({
nativeFetch
} = {}) {
if (nativeFetch) {
let {
File: UndiciFile,
fetch: undiciFetch,
FormData: UndiciFormData,
Headers: UndiciHeaders,
Request: UndiciRequest,
Response: UndiciResponse
} = require("undici");
global.File = UndiciFile;
global.Headers = UndiciHeaders;
global.Request = UndiciRequest;
global.Response = UndiciResponse;
global.fetch = undiciFetch;
global.FormData = UndiciFormData;
} else {
let {
File: RemixFile,
fetch: RemixFetch,
FormData: RemixFormData,
Headers: RemixHeaders,
Request: RemixRequest,
Response: RemixResponse
} = require("@remix-run/web-fetch");
global.File = RemixFile;
global.Headers = RemixHeaders;
global.Request = RemixRequest;
global.Response = RemixResponse;
global.fetch = RemixFetch;
global.FormData = RemixFormData;
}
}
exports.installGlobals = installGlobals;
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -4,0 +4,0 @@ * Copyright (c) Remix Software Inc.

@@ -1,3 +0,1 @@

export type { HeadersInit, RequestInfo, RequestInit, ResponseInit, } from "./fetch";
export { fetch, FormData, Headers, Request, Response } from "./fetch";
export { installGlobals } from "./globals";

@@ -8,3 +6,3 @@ export { createFileSessionStorage } from "./sessions/fileStorage";

export { createReadableStreamFromReadable, readableStreamToString, writeAsyncIterableToWritable, writeReadableStreamToWritable, } from "./stream";
export { createRequestHandler, createSession, defer, broadcastDevReady, logDevReady, isCookie, isSession, json, MaxPartSizeExceededError, redirect, redirectDocument, unstable_composeUploadHandlers, unstable_createMemoryUploadHandler, unstable_parseMultipartFormData, } from "@remix-run/server-runtime";
export type { ActionArgs, ActionFunction, AppData, AppLoadContext, Cookie, CookieOptions, CookieParseOptions, CookieSerializeOptions, CookieSignatureOptions, DataFunctionArgs, EntryContext, HandleDataRequestFunction, HandleDocumentRequestFunction, HeadersArgs, HeadersFunction, HtmlLinkDescriptor, JsonFunction, LinkDescriptor, LinksFunction, LoaderArgs, LoaderFunction, MemoryUploadHandlerFilterArgs, MemoryUploadHandlerOptions, HandleErrorFunction, PageLinkDescriptor, RequestHandler, RouteHandle, SerializeFrom, ServerBuild, ServerEntryModule, ServerRuntimeMetaArgs as MetaArgs, ServerRuntimeMetaDescriptor as MetaDescriptor, ServerRuntimeMetaFunction as MetaFunction, Session, SessionData, SessionIdStorageStrategy, SessionStorage, SignFunction, TypedDeferredData, TypedResponse, UnsignFunction, UploadHandler, UploadHandlerPart, } from "@remix-run/server-runtime";
export { createRequestHandler, createSession, unstable_data, defer, broadcastDevReady, logDevReady, isCookie, isSession, json, MaxPartSizeExceededError, redirect, redirectDocument, replace, unstable_composeUploadHandlers, unstable_createMemoryUploadHandler, unstable_parseMultipartFormData, } from "@remix-run/server-runtime";
export type { ActionFunction, ActionFunctionArgs, AppLoadContext, Cookie, CookieOptions, CookieParseOptions, CookieSerializeOptions, CookieSignatureOptions, DataFunctionArgs, EntryContext, ErrorResponse, Future, HandleDataRequestFunction, HandleDocumentRequestFunction, HeadersArgs, HeadersFunction, HtmlLinkDescriptor, JsonFunction, LinkDescriptor, LinksFunction, LoaderFunction, LoaderFunctionArgs, MemoryUploadHandlerFilterArgs, MemoryUploadHandlerOptions, HandleErrorFunction, PageLinkDescriptor, RequestHandler, SerializeFrom, ServerBuild, ServerEntryModule, ServerRuntimeMetaArgs as MetaArgs, ServerRuntimeMetaDescriptor as MetaDescriptor, ServerRuntimeMetaFunction as MetaFunction, Session, SessionData, SessionIdStorageStrategy, SessionStorage, SignFunction, TypedDeferredData, TypedResponse, UnsignFunction, UploadHandler, UploadHandlerPart, } from "@remix-run/server-runtime";
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -15,3 +15,2 @@ * Copyright (c) Remix Software Inc.

var fetch = require('./fetch.js');
var globals = require('./globals.js');

@@ -23,9 +22,5 @@ var fileStorage = require('./sessions/fileStorage.js');

var serverRuntime = require('@remix-run/server-runtime');
var webFetch = require('@remix-run/web-fetch');
exports.Request = fetch.Request;
exports.Response = fetch.Response;
exports.fetch = fetch.fetch;
exports.installGlobals = globals.installGlobals;

@@ -87,2 +82,6 @@ exports.createFileSessionStorage = fileStorage.createFileSessionStorage;

});
Object.defineProperty(exports, 'replace', {
enumerable: true,
get: function () { return serverRuntime.replace; }
});
Object.defineProperty(exports, 'unstable_composeUploadHandlers', {

@@ -96,2 +95,6 @@ enumerable: true,

});
Object.defineProperty(exports, 'unstable_data', {
enumerable: true,
get: function () { return serverRuntime.unstable_data; }
});
Object.defineProperty(exports, 'unstable_parseMultipartFormData', {

@@ -101,9 +104,1 @@ enumerable: true,

});
Object.defineProperty(exports, 'FormData', {
enumerable: true,
get: function () { return webFetch.FormData; }
});
Object.defineProperty(exports, 'Headers', {
enumerable: true,
get: function () { return webFetch.Headers; }
});

@@ -22,2 +22,3 @@ import type { SessionStorage, SessionIdStorageStrategy, SessionData } from "@remix-run/server-runtime";

export declare function createFileSessionStorage<Data = SessionData, FlashData = Data>({ cookie, dir, }: FileSessionStorageOptions): SessionStorage<Data, FlashData>;
export declare function getFile(dir: string, id: string): string;
export {};
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -61,5 +61,5 @@ * Copyright (c) Remix Software Inc.

while (true) {
// TODO: Once node v16 is available on AWS we should use the webcrypto
// API's crypto.getRandomValues() function here instead.
let randomBytes = crypto__namespace.randomBytes(8);
// TODO: Once Node v19 is supported we should use the globally provided
// Web Crypto API's crypto.getRandomValues() function here instead.
let randomBytes = crypto__namespace.webcrypto.getRandomValues(new Uint8Array(8));
// This storage manages an id space of 2^64 ids, which is far greater

@@ -137,1 +137,2 @@ // than the maximum number of files allowed on an NTFS or ext4 volume

exports.createFileSessionStorage = createFileSessionStorage;
exports.getFile = getFile;
/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -19,22 +19,18 @@ * Copyright (c) Remix Software Inc.

let reader = stream.getReader();
async function read() {
let {
done,
value
} = await reader.read();
if (done) {
writable.end();
return;
let flushable = writable;
try {
while (true) {
let {
done,
value
} = await reader.read();
if (done) {
writable.end();
break;
}
writable.write(value);
if (typeof flushable.flush === "function") {
flushable.flush();
}
}
writable.write(value);
// If the stream is flushable, flush it to allow streaming to continue.
let flushable = writable;
if (typeof flushable.flush === "function") {
flushable.flush();
}
await read();
}
try {
await read();
} catch (error) {

@@ -59,3 +55,3 @@ writable.destroy(error);

let chunks = [];
async function read() {
while (true) {
let {

@@ -66,9 +62,8 @@ done,

if (done) {
return;
} else if (value) {
break;
}
if (value) {
chunks.push(value);
}
await read();
}
await read();
return Buffer.concat(chunks).toString(encoding);

@@ -75,0 +70,0 @@ }

/**
* @remix-run/node v0.0.0-nightly-49e8da1-20230823
* @remix-run/node v0.0.0-nightly-4a957276b-20240918
*

@@ -173,3 +173,2 @@ * Copyright (c) Remix Software Inc.

}
async arrayBuffer() {

@@ -176,0 +175,0 @@ let stream = node_fs.createReadStream(this.filepath);

MIT License
Copyright (c) Remix Software Inc. 2020-2021
Copyright (c) Shopify Inc. 2022-2023
Copyright (c) Shopify Inc. 2022-2024

@@ -6,0 +6,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@remix-run/node",
"version": "0.0.0-nightly-49e8da1-20230823",
"version": "0.0.0-nightly-4a957276b-20240918",
"description": "Node.js platform abstractions for Remix",

@@ -20,10 +20,9 @@ "bugs": {

"dependencies": {
"@remix-run/server-runtime": "0.0.0-nightly-49e8da1-20230823",
"@remix-run/web-fetch": "^4.3.7",
"@remix-run/web-file": "^3.0.3",
"@remix-run/web-stream": "^1.0.4",
"@remix-run/server-runtime": "0.0.0-nightly-4a957276b-20240918",
"@remix-run/web-fetch": "^4.4.2",
"@web3-storage/multipart-parser": "^1.0.0",
"cookie-signature": "^1.1.0",
"source-map-support": "^0.5.21",
"stream-slice": "^0.1.2"
"stream-slice": "^0.1.2",
"undici": "^6.11.1"
},

@@ -54,3 +53,6 @@ "devDependencies": {

"README.md"
]
}
],
"scripts": {
"tsc": "tsc"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc