Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cloudflare:deploy": "wrangler deploy",
"cloudflare:preview": "wrangler dev",
"predeploy": "node --run build:blog-data",
"deploy": "cross-env NEXT_PUBLIC_STATIC_EXPORT=true node --run build:default",
"deploy": "cross-env NEXT_PUBLIC_STATIC_EXPORT=true node --run build:default -- --turbo",
"predev": "node --run build:blog-data",
"dev": "cross-env NODE_NO_WARNINGS=1 next dev --turbo",
"lint": "turbo run lint:md lint:js lint:css",
Expand Down Expand Up @@ -57,7 +57,7 @@
"feed": "~5.1.0",
"github-slugger": "~2.0.0",
"gray-matter": "~4.0.3",
"next": "15.3.4",
"next": "15.4.3",
"next-intl": "~4.3.4",
"next-themes": "~0.4.6",
"postcss-calc": "~10.1.1",
Expand All @@ -83,7 +83,7 @@
"@playwright/test": "^1.53.2",
"@testing-library/user-event": "~14.6.1",
"@types/semver": "~7.7.0",
"eslint-config-next": "15.3.5",
"eslint-config-next": "15.4.3",
"eslint-import-resolver-typescript": "~4.4.4",
"eslint-plugin-mdx": "~3.6.0",
"eslint-plugin-react": "~7.37.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Node.js is an open-source and cross-platform JavaScript runtime environment. It

Node.js runs the V8 JavaScript engine, the core of Google Chrome, outside of the browser. This allows Node.js to be very performant.

A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and generally, libraries in Node.js are written using non-blocking paradigms, making blocking behavior the exception rather than the norm.
A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking. In addition, libraries in Node.js are generally written using non-blocking paradigms. Accordingly, blocking behavior is the exception rather than the norm in Node.js.

When Node.js performs an I/O operation, like reading from the network, accessing a database or the filesystem, instead of blocking the thread and wasting CPU cycles waiting, Node.js will resume the operations when the response comes back.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.6.13"
},
"packageManager": "pnpm@10.11.1",
"packageManager": "pnpm@10.13.1",
"devEngines": {
"runtime": {
"name": "node",
Expand All @@ -57,7 +57,7 @@
},
"packageManager": {
"name": "pnpm",
"version": "10.11.1",
"version": "10.13.1",
"onFail": "error"
}
}
Expand Down
7 changes: 4 additions & 3 deletions packages/ui-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,18 @@
"@radix-ui/react-tabs": "~1.1.12",
"@radix-ui/react-toast": "~1.2.14",
"@radix-ui/react-tooltip": "~1.2.7",
"@tailwindcss/postcss": "~4.1.11",
"@vcarl/remark-headings": "~0.1.0",
"classnames": "catalog:"
"classnames": "catalog:",
"postcss-calc": "^10.1.1",
"tailwindcss": "catalog:"
},
"devDependencies": {
"@storybook/addon-styling-webpack": "^2.0.0",
"@storybook/addon-themes": "^9.0.15",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/react": "^9.0.15",
"@storybook/react-webpack5": "^9.0.15",
"@tailwindcss/postcss": "~4.1.11",
"@testing-library/user-event": "~14.6.1",
"@types/node": "catalog:",
"@types/react": "catalog:",
Expand All @@ -55,7 +57,6 @@
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-storybook": "~9.0.3",
"global-jsdom": "^26.0.0",
"postcss-calc": "^10.1.1",
"postcss-cli": "^11.0.1",
"postcss-loader": "~8.1.1",
"react": "catalog:",
Expand Down
Loading
Loading