Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
vue-json-csv
Advanced tools
VueJS component to export Json Data into CSV file and download the resulting file.
Get the package:
yarn add vue-json-csv
Register JsonCSV in your app entrypoint:
import Vue from 'vue'
import JsonCSV from 'vue-json-csv'
Vue.component('downloadCsv', JsonCSV)
In your template
<download-csv
:data = "json_data">
Download Data
<img src="download_icon.png">
</download-csv>
Name | Type | Description |
---|---|---|
data | Array | (required) Data to be exported |
fields | Array/Function(value, key) | fields inside the Json Object that you want to export. If no given, all the properties in the Json are exported. Use the function to filter the data and only keep the properties you want. |
labels | Object/Function(value, key) | Set the label for the header row. |
name | string | filename to export, default: data.csv |
delimiter | string | Default ",". Can be changed to anything. |
separator-excel | boolean | If true, will prepend SEP={delimiter} to the file to make it easily usable with Excel |
encoding | string | Set the wanted encoding, default to 'utf-8' |
advancedOptions | Object | You can set all the options of PapaParse yourself |
import Vue from 'vue'
import JsonCSV from 'vue-json-csv'
Vue.component('downloadCsv', JsonCSV)
const app = new Vue({
el: '#app',
data: {
json_data: [
{
'name': 'Tony Peña',
'city': 'New York',
'country': 'United States',
'birthdate': '1978-03-15',
'phone': {
'mobile': '1-541-754-3010',
'landline': '(541) 754-3010'
}
},
{
'name': 'Thessaloniki',
'city': 'Athens',
'country': 'Greece',
'birthdate': '1987-11-23',
'phone': {
'mobile': '+1 855 275 5071',
'landline': '(2741) 2621-244'
}
}
]
}
})
In your Template call it like
<download-csv
class = "btn btn-default"
:data = "json_data"
name = "filename.csv">
Download CSV (This is a slot)
</download-csv>
REQUIRED
MIT
FAQs
Download your JSON data as an CSV file directly from the browser
The npm package vue-json-csv receives a total of 9,660 weekly downloads. As such, vue-json-csv popularity was classified as popular.
We found that vue-json-csv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.