Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thenoim/fastify-vue
A nuxt.js fastify plugin
https://github.com/thenoim/fastify-vue
fastify fastify-plugin hacktoberfest nuxt nuxtjs vue
Last synced: 3 days ago
JSON representation
A nuxt.js fastify plugin
- Host: GitHub
- URL: https://github.com/thenoim/fastify-vue
- Owner: TheNoim
- License: mit
- Created: 2018-09-08T17:26:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T13:54:46.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T10:19:00.114Z (11 days ago)
- Topics: fastify, fastify-plugin, hacktoberfest, nuxt, nuxtjs, vue
- Language: JavaScript
- Homepage:
- Size: 1.21 MB
- Stars: 29
- Watchers: 1
- Forks: 5
- Open Issues: 22
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# fastify-vue-plugin
_A [nuxt.js](https://nuxtjs.org) [fastify](https://fastify.io) plugin_
[![NpmLicense](https://img.shields.io/npm/l/fastify-vue-plugin.svg?style=for-the-badge)](https://www.npmjs.com/package/fastify-vue-plugin)
[![David](https://img.shields.io/david/TheNoim/fastify-vue.svg?style=for-the-badge)](https://github.com/TheNoim/fastify-vue)
[![GitHub package version](https://img.shields.io/github/package-json/v/TheNoim/fastify-vue.svg?style=for-the-badge)](https://github.com/TheNoim/fastify-vue)
[![NPM Link](https://img.shields.io/badge/npm-fastify--vue--plugin-red.svg?style=for-the-badge)](https://www.npmjs.com/package/fastify-vue-plugin) [![Greenkeeper badge](https://badges.greenkeeper.io/TheNoim/fastify-vue.svg)](https://greenkeeper.io/)### Installation
```bash
yarn add fastify-vue-plugin
# or if you use npm
npm i fastify-vue-plugin --save
```### Usage
```javascript
const fastify = require('fastify')();fastify.register(require('fastify-vue-plugin'), {
config: require('./nuxt.config.js'),
attachProperties: ['session'] // Attach properties from the fastify request object to the nuxt request object. Example use case: Attach session store to nuxt context.
}).after(e => {
if (e) console.trace(e);
fastify.nuxt('/'); // is equals: index.vue
fastify.nuxt('/dashboard');
// add all your nuxtjs routes
// make sure there are added in the after function
// use params
fastify.nuxt('/product/:id');
});// other stuff/routes
fastify.listen(1337, '0.0.0.0' , (e) => {
if (e) console.trace(e);
console.warn('http://0.0.0.0:1337');
});
```### Notice
This plugin is inspired by the [fastify-react](https://github.com/fastify/fastify-react) plugin.
### License
The MIT License (MIT)
Copyright (c) 2018 Nils Bergmann
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.