Do It Yourself
Interweave doesn't require JavaScript or the npm package to function. You can make a regular HTTP request to the Interweave API to build your interface with JSON.
Here is a basic example script to do that:
curl -X POST "https://api.interwv.com/api/v1/projects/__YOUR_PROJECT_ID__/interfaces" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer __YOUR_PROJECT_API_TOKEN__" \
-d '{
"schema_config": SCHEMA,
"key": KEY,
"title": TITLE,
"description": DESCRIPTION
}'