@remix-run/server-runtime
Advanced tools
Comparing version 0.0.0-experimental-149e932f to 0.0.0-experimental-15d9a14ad
@@ -1,7 +0,22 @@ | ||
Copyright 2021 Remix Software Inc. | ||
MIT License | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
Copyright (c) Remix Software Inc. 2020-2021 | ||
Copyright (c) Shopify Inc. 2022-2024 | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
{ | ||
"name": "@remix-run/server-runtime", | ||
"version": "0.0.0-experimental-15d9a14ad", | ||
"description": "Server runtime for Remix", | ||
"version": "0.0.0-experimental-149e932f", | ||
"license": "MIT", | ||
"main": "./index.js", | ||
"module": "./esm/index.js", | ||
"bugs": { | ||
"url": "https://github.com/remix-run/remix/issues" | ||
}, | ||
"repository": { | ||
@@ -13,22 +13,40 @@ "type": "git", | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/remix-run/remix/issues" | ||
}, | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"module": "dist/esm/index.js", | ||
"dependencies": { | ||
"@types/cookie": "^0.4.0", | ||
"cookie": "^0.4.1", | ||
"jsesc": "^3.0.1", | ||
"react-router-dom": "^6.1.1", | ||
"@remix-run/router": "1.23.0", | ||
"@types/cookie": "^0.6.0", | ||
"@web3-storage/multipart-parser": "^1.0.0", | ||
"cookie": "^0.6.0", | ||
"set-cookie-parser": "^2.4.8", | ||
"source-map": "^0.7.3" | ||
"source-map": "^0.7.3", | ||
"turbo-stream": "2.4.0" | ||
}, | ||
"devDependencies": { | ||
"@types/set-cookie-parser": "^2.4.1", | ||
"typescript": "^5.1.6" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=16.8", | ||
"react-dom": ">=16.8" | ||
"typescript": "^5.1.0" | ||
}, | ||
"devDependencies": { | ||
"@types/jsesc": "^2.5.1", | ||
"@types/set-cookie-parser": "^2.4.1" | ||
"peerDependenciesMeta": { | ||
"typescript": { | ||
"optional": true | ||
} | ||
}, | ||
"sideEffects": false | ||
} | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"files": [ | ||
"dist/", | ||
"CHANGELOG.md", | ||
"LICENSE.md", | ||
"README.md" | ||
], | ||
"scripts": { | ||
"tsc": "tsc" | ||
} | ||
} |
@@ -1,13 +0,26 @@ | ||
# Welcome to Remix! | ||
# @remix-run/server-runtime | ||
[Remix](https://remix.run) is a web framework that helps you build better websites with React. | ||
[Remix](https://remix.run) supports multiple server runtimes: | ||
To get started, open a new shell and run: | ||
- [Node](https://nodejs.org/en/) | ||
- [Cloudflare](https://developers.cloudflare.com/workers/learning/how-workers-works/) | ||
- [Deno](https://deno.land/) (Experimental 🧪) | ||
```sh | ||
$ npx create-remix@latest | ||
``` | ||
Support for each runtime is provided by a corresponding Remix package: | ||
Then follow the prompts you see in your terminal. | ||
- [`@remix-run/node`](https://github.com/remix-run/remix/tree/main/packages/remix-node) | ||
- [`@remix-run/cloudflare`](https://github.com/remix-run/remix/tree/main/packages/remix-cloudflare) | ||
- [`@remix-run/deno`](https://github.com/remix-run/remix/tree/main/packages/remix-deno) | ||
For more information about Remix, [visit remix.run](https://remix.run)! | ||
This package defines a "Remix server runtime interface" that each runtime package must conform to. | ||
Each Remix server runtime package MUST: | ||
- Implement and export values for each type in [`interface.ts`](./interface.ts) | ||
- Re-export types in [`reexport.ts`](./reexport.ts) | ||
Each Remix server runtime package MAY: | ||
- Re-export the [default implementations](./index.ts) as its implementations | ||
- Export custom implementations adhering to the [interface types](./interface.ts) | ||
- Provide additional exports relevant for that runtime |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
207216
85
5291
27
3
+ Added@remix-run/router@1.23.0
+ Addedturbo-stream@2.4.0
+ Added@types/cookie@0.6.0(transitive)
+ Added@web3-storage/multipart-parser@1.0.0(transitive)
+ Addedcookie@0.6.0(transitive)
+ Addedturbo-stream@2.4.0(transitive)
+ Addedtypescript@5.8.2(transitive)
- Removedjsesc@^3.0.1
- Removedreact-router-dom@^6.1.1
- Removed@types/cookie@0.4.1(transitive)
- Removedcookie@0.4.2(transitive)
- Removedjsesc@3.1.0(transitive)
- Removedreact@19.0.0(transitive)
- Removedreact-dom@19.0.0(transitive)
- Removedreact-router@6.30.0(transitive)
- Removedreact-router-dom@6.30.0(transitive)
- Removedscheduler@0.25.0(transitive)
Updated@types/cookie@^0.6.0
Updatedcookie@^0.6.0