Socket
Socket
Sign inDemoInstall

@astrojs/vue

Package Overview
Dependencies
Maintainers
4
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astrojs/vue - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

astrojs-vue-0.1.1.tgz

8

CHANGELOG.md
# @astrojs/vue
## 0.1.1
### Patch Changes
- [`815d62f1`](https://github.com/withastro/astro/commit/815d62f151a36fef7d09590d4962ca71bda61b32) Thanks [@FredKSchott](https://github.com/FredKSchott)! - no changes.
## 0.1.0

@@ -7,3 +13,3 @@

- [`2bb6a06e`](https://github.com/withastro/astro/commit/2bb6a06ebb449aa3fec6414754c8a248ca4721ef) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Welcome to the Astro v1.0.0 Beta! Read the [official announcement](https://astro.build/blog/astro-1-beta-release/) for more details.
- [#2979](https://github.com/withastro/astro/pull/2979) [`9d7a4b59`](https://github.com/withastro/astro/commit/9d7a4b59b53f8cb274266f5036d1cef841750252) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Welcome to the Astro v1.0.0 Beta! Read the [official announcement](https://astro.build/blog/astro-1-beta-release/) for more details.

@@ -10,0 +16,0 @@ ## 0.0.2

21

package.json
{
"name": "@astrojs/vue",
"version": "0.1.0",
"version": "0.1.1",
"description": "Use Vue components within Astro",

@@ -28,2 +28,7 @@ "type": "module",

},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {

@@ -33,4 +38,4 @@ "@vitejs/plugin-vue": "^2.3.1"

"devDependencies": {
"astro": "1.0.0-beta.6",
"astro-scripts": "0.0.2",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"vue": "^3.2.31"

@@ -43,9 +48,3 @@ },

"node": "^14.15.0 || >=16.0.0"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"readme": "# @astrojs/vue 💚\n\nThis **[Astro integration][astro-integration]** enables server-side rendering and client-side hydration for your [Vue 3](https://vuejs.org/) components.\n\n## Installation\n\nThere are two ways to add integrations to your project. Let's try the most convenient option first!\n\n### (experimental) `astro add` command\n\nAstro includes a CLI tool for adding first party integrations: `astro add`. This command will:\n1. (Optionally) Install all necessary dependencies and peer dependencies\n2. (Also optionally) Update your `astro.config.*` file to apply this integration\n\nTo install `@astrojs/vue`, run the following from your project directory and follow the prompts:\n\n```sh\n# Using NPM\nnpx astro add vue\n# Using Yarn\nyarn astro add vue\n# Using PNPM\npnpx astro add vue\n```\n\nIf you run into any hiccups, [feel free to log an issue on our GitHub](https://github.com/withastro/astro/issues) and try the manual installation steps below.\n\n### Install dependencies manually\n\nFirst, install the `@astrojs/vue` integration like so:\n\n```\nnpm install @astrojs/vue\n```\n\nMost package managers will install associated peer dependencies as well. Still, if you see a \"Cannot find package 'vue'\" (or similar) warning when you start up Astro, you'll need to install Vue:\n\n```sh\nnpm install vue\n```\n\nNow, apply this integration to your `astro.config.*` file using the `integrations` property:\n\n__astro.config.mjs__\n\n```js\nimport vue from '@astrojs/vue';\n\nexport default {\n // ...\n integrations: [vue()],\n}\n```\n\n## Getting started\n\nTo use your first Vue component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore:\n- 📦 how framework components are loaded,\n- 💧 client-side hydration options, and\n- 🪆 opportunities to mix and nest frameworks together\n\nAlso check our [Astro Integration Documentation][astro-integration] for more on integrations.\n\n[astro-integration]: https://docs.astro.build/en/guides/integrations-guide/\n[astro-ui-frameworks]: https://docs.astro.build/en/core-concepts/framework-components/#using-framework-components\n"
}
}
}
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