Azure / azure-cosmosdb-ads-extension

Azure Data Studio extension for Azure CosmosDB
MIT License
16 stars 10 forks source link

Replace query-editor react application created to vite #96

Closed languy closed 1 year ago

languy commented 1 year ago

The query-editor React application runs in a Webview. It is currently not used, but will be once we support query edition.

It was originally created using CRA (the Create-React-App code generator from React). But CRA is old and doesn't seem actively maintained anymore: there are packages to be upgraded for security and it generally is a heavy framework and slow to build.

vite is fast and seems more lightweight. It uses the new esbuild transpiler which is faster. Though it is new, it is actively maintained.