jsx-async-runtime
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "jsx-async-runtime", | ||
"version": "0.1.5", | ||
"description": "An asynchronous JSX runtime without dependencies to be used as server-side template engine.", | ||
"version": "0.1.6", | ||
"description": "An asynchronous JSX runtime without dependencies to be used as html template engine.", | ||
"keywords": [ | ||
@@ -43,3 +43,3 @@ "jsx", | ||
"build": "rm -r dist ; npm run build:types && npm run build:esm", | ||
"build:esm": "esbuild --minify --platform=node --format=esm --outdir=./dist/esm --bundle ./src/*.ts", | ||
"build:esm": "esbuild --minify --platform=neutral --format=esm --outdir=./dist/esm --bundle ./src/*.ts", | ||
"build:types": "tsc --emitDeclarationOnly --outDir ./dist/types" | ||
@@ -46,0 +46,0 @@ }, |
# jsx-async-runtime | ||
An asynchronous JSX runtime without dependencies to be used as server-side template engine. | ||
An asynchronous JSX runtime without dependencies to be used as html template engine. | ||
@@ -30,3 +30,3 @@ ## Getting started | ||
If you're using `jsx-async-runtime` as server-side template engine, you might want to include data from an asynchronous operation in the resulting markup. To simplify this process, you can make your components asynchronous and send async requests from within them. | ||
If you're using `jsx-async-runtime` as template engine, you might want to include data from an asynchronous operation in the resulting markup. To simplify this process, you can make your components asynchronous and send async requests from within them. | ||
@@ -33,0 +33,0 @@ Please note: `jsx-async-runtime` doesn't escape html entities per default, so rendering user input makes your application vulnerable to cross site scripting. `jsx-async-runtime` exports a utility function called `escapeEntities` which can be used to render input from uncontrolled sources. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32755