
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
hexo-generator-hexo2firekylin
Advanced tools
Hexo plugin to generate a JSON file for firekylin or ghost blog system.
npm i -S hexo-generator-hexo2firekylin
Hexo will run the generator automagically when you run hexo serve
or hexo generate
.
Using the default settings, the export.json
file looks like the following structure:
{
"meta":{
// epoch time in milliseconds
"exported_on": 1388805572000,
// Data version, current is 003
"version": "003"
},
"data":{
"posts": [
{
"id":5,
"title": "my blog post title",
"slug": "my-blog-post-title",
"markdown": "the *markdown* formatted post body",
"html": "the <i>html</i> formatted post body",
"page": 0, // boolean indicating if this is a page or post
"status": "published", // or draft
"author_id": 1, // the first user created has an id of 1
"created_at": 1283780649000, // epoch time in millis
"created_by": 1, // the first user created has an id of 1
"updated_at": 1286958624000, // epoch time in millis
"updated_by": 1, // the first user created has an id of 1
"published_at": 1283780649000, // epoch time in millis
"published_by": 1 // the first user created has an id of 1
}
],
"tags": [
{
"id": 3,
"name": "Colorado Ho!",
"slug": "colorado-ho",
"description": ""
},
{
"id": 4,
"name": "blue",
"slug": "blue",
"description": ""
}
],
"posts_tags": [
{"tag_id":3, "post_id":5},
{"tag_id":3, "post_id":2},
{"tag_id":4, "post_id":24}
],
"categories": [
{
"id": 3,
"name": "Colorado Ho!",
"slug": "colorado-ho",
"description": ""
},
{
"id": 4,
"name": "blue",
"slug": "blue",
"parent": 3,
"description": ""
}
],
"posts_categories": [
{"category_id":3, "post_id":5},
{"category_id":3, "post_id":2},
{"category_id":4, "post_id":24}
],
"users": [
{
"id": 2,
"name": "user's name",
"slug": "users-name",
"email": "user@example.com"
}
],
"roles_users": [
{
"user_id": 2,
"role_id": 3
}
]
}
}
You can set some options in _config.yml
to generate a custom export.json
.
Default options are as follows:
email: admin@admin.com
exportFileName: export.json
FAQs
hexo plugin to export hexo into firekylin or ghost
The npm package hexo-generator-hexo2firekylin receives a total of 1 weekly downloads. As such, hexo-generator-hexo2firekylin popularity was classified as not popular.
We found that hexo-generator-hexo2firekylin 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.