npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pickering-majority-text-revelation

v1.2.2

Published

A programmatic version of Pickering's Majority Text translation of Revelation

Downloads

6

Readme

A programmatic version of Pickering's Majority Text translation of Revelation.

To run the conversion scripts, install xpdf first.

requireing the package returns an object with two properties: versesNoteReferencesAndHeaders and notes.

You can also require pickering-majority-text-revelation/verses-note-references-and-headers.json and pickering-majority-text-revelation/notes.json directly.

var revelation = require('pickering-majority-text-revelation')

revelation.versesNoteReferencesAndHeaders.slice(0, 10)
/*
[ { type: 'note reference', identifier: '1' },
  { type: 'header', text: 'Introduction' },
  { type: 'start paragraph' },
  { type: 'verse',
    chapterNumber: 1,
    verseNumber: 1,
    text: 'Jesus Christ’s revelation, which God gave Him to show to His slaves',
    sectionNumber: 1 },
  { type: 'note reference', identifier: '2' },
  { type: 'verse',
    chapterNumber: 1,
    verseNumber: 1,
    text: '—things that must occur shortly.',
    sectionNumber: 2 },
  { type: 'note reference', identifier: '3' },
  { type: 'verse',
    chapterNumber: 1,
    verseNumber: 1,
    text: 'And He communicated it, sending it by His angel to His slave John,',
    sectionNumber: 3 },
  { type: 'verse',
    chapterNumber: 1,
    verseNumber: 2,
    text: 'who gave witness to the word of God, even the testimony of Jesus Christ',
    sectionNumber: 1 },
  { type: 'note reference', identifier: '4' } ]
*/

Object.keys(revelation.notes).slice(0, 10).reduce((memo, key) => { memo[key] = revelation.notes[key]; return memo }, {})

/*
{ '1': 'Both the translation and the comments are the responsibility of Wilbur N. Pickering, ThM PhD, ©, being based on his edition of the Greek New Testament, according to the only significant line of transmission, both ancient and independent, that has a demonstrable archetypal form in all 27 books. The Greek Text of which this is a translation, and articles explaining the preference, may be downloaded free from  www.prunch.org.',
  '2': 'Whose, the Father’s or the Son’s? Probably the Son’s, but in practice it makes little or no difference. Yes, the Text says “slaves”, so this book is not intended for the merely curious.',
  '3': 'The Text actually says, “with speed”. Since to God 1000 years = one day, it has only been two days!',
  '4': 'Any testimony of Jesus Christ is a word of God.',
  '5': 'Most, if not all, versions have ‘he saw’ (referring to John, not Jesus) and omit the rest of the verse. The manuscript evidence is seriously divided at this point. My translation reflects two of the three main independent lines of transmission, including the best one (as I see it). See 22:20, “He who testifies to these things says, ‘Yes, I am coming swiftly!’ Oh yes!! Come Lord Jesus!” The whole book is what Jesus Christ is testifying, is revealing; as an eye witness. So the whole book is inspired.',
  '6': 'John is evidently claiming divine inspiration for what he is writing. You won’t be blessed for reading or hearing a newspaper or a magazine. Notice that one person is reading (aloud) and a number of people are hearing, which was the norm in the congregations, since very few could afford to have a private copy of Scripture. Notice further that it is necessary to “keep” what is written.',
  '7': 'The sequence “from..., and from..., and from...” suggests three persons. The third, “Jesus Christ”, has to be the Son. “The seven-fold Spirit” would be the Holy Spirit. So “Him who is, was and is coming” must be the Father. Just over half of the Greek MSS add ‘God’ after the first “from” to make the connection overt (but the best line of transmission does not).',
  '8': 'Although the evidence is badly divided, I take it that the original reading is “the seven spirits which is”. A plural subject with a singular verb is anomalous, unless we understand “seven-fold Spirit which is”. If the Deity is three in one, why might not the Holy Spirit be seven in one? See Isaiah 11:2.',
  '9': 'When and how was He “the faithful witness”? Throughout His life on earth He was the faithful witness to the Father’s character, what the Father was doing (John 5:19), what the Father was saying (John 12:50). Here He is the faithful witness to what is going to happen.',
  '10': 'We have two readings here: one is clearly “from among the dead” while the other is ambiguous, meaning either “from among the dead” or ‘of the dead’. With the latter option, “firstborn” could have the derived meaning of ‘lord’ or ‘boss’. I take it that the better option is to follow the best line of transmission and read “from among”, in which case “firstborn” has its primary meaning. Death is pictured as a huge womb, pregnant with all the dead, and Jesus Christ was the first one out, literally the “firstborn”—but only the first! Because Jesus conquered death, we too may emerge from that ‘womb’. Thank you Lord!' }
*/