New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@expo/server

Package Overview
Dependencies
Maintainers
0
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/server - npm Package Compare versions

Comparing version 0.5.1-canary-20250114-804e26d to 0.5.1

10

build/index.js

@@ -72,3 +72,11 @@ "use strict";

console.error(error);
}, handleApiRouteError = async () => {
}, handleApiRouteError = async (error) => {
if ('statusCode' in error && typeof error.statusCode === 'number') {
return new Response(error.message, {
status: error.statusCode,
headers: {
'Content-Type': 'text/plain',
},
});
}
return new Response('Internal server error', {

@@ -75,0 +83,0 @@ status: 500,

4

package.json
{
"name": "@expo/server",
"version": "0.5.1-canary-20250114-804e26d",
"version": "0.5.1",
"description": "Server API for Expo Router projects",

@@ -45,3 +45,3 @@ "main": "build/index.js",

},
"gitHead": "804e26d8545f2b890dfa80eeb8122036f38d4d0c"
"gitHead": "0a0c6d35a691fc59c0d94675d159ac9e3dfd6f26"
}

Sorry, the diff of this file is not supported yet

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