New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@yuheiy/aozora-lorem

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yuheiy/aozora-lorem

The fake text generator using Aozora Bunko.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Aozora lorem

The fake text generator using Aozora Bunko. This makes better "ここにテキストが入ります".

Inspired by faker.js.

Install

npm install @yuheiy/aozora-lorem

Usage

const pug = require('pug')
const { loadBook } = require('@yuheiy/aozora-lorem')

loadBook('https://www.aozora.gr.jp/cards/000081/files/456_15050.html').then(
  ({ lorem }) => {
    const html = pug.render('p= lorem.paragraph()', { lorem })
    // "<p>「おっかさんは、ぼくをゆるして下さるだろうか。」</p>"
  },
)

API

loadBook(url)

Load data from Aozora Bunko and returns an instance of book. Specify the URL of the book's XHTML file as an argument.

You can get the URL from the link to the "XHTMLファイル" on the "図書カード" page.

const { loadBook } = require('@yuheiy/aozora-lorem')

loadBook('https://www.aozora.gr.jp/cards/000081/files/456_15050.html').then(
  (book) => {
    book.lorem.paragraph()
  },
)

book.lorem.content

An array containig all of the content.

book.content
// [
//   "一、午后の授業",
//   "「ではみなさんは、そういうふうに川だと云われたり、乳の流れたあとだと云われたりしていたこのぼんやりと白いものがほんとうは何かご承知ですか。」先生は、黒板に吊した大きな黒い星座の図の、上から下へ白くけぶった銀河帯のようなところを指しながら、みんなに問をかけました。",
//   "カムパネルラが手をあげました。それから四五人手をあげました。ジョバンニも手をあげようとして、急いでそのままやめました。たしかにあれがみんな星だと、いつか雑誌で読んだのでしたが、このごろはジョバンニはまるで毎日教室でもねむく、本を読むひまも読む本もないので、なんだかどんなこともよくわからないという気持ちがするのでした。",
//   ...
// ]

book.lorem.paragraph()

Returens a paragraph at random.

book.lorem.paragraph()
// "「いま誰もいないでわかりません。あしたにして下さい。」"

book.lorem.paragraphs(lines = random(1, content.length))

Returns paragraphs of the specified number of lines at random. By default the number of lines is random.

book.lorem.paragraphs(3)
// [
//   "ジョバンニが云いました。",
//   "「銀河ステーションで、もらったんだ。君もらわなかったの。」",
//   "「ああ、ぼく銀河ステーションを通ったろうか。いまぼくたちの居るとこ、ここだろう。」"
// ]

License

The license for this software is MIT.

Details of the license for Aozora Bunko is here.

FAQs

Package last updated on 14 Jul 2018

Did you know?

Socket

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.

Install

Related posts

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