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

@tsevdos/greek-in-tech

v1.3.1

Published

Learn which words used on modern computing and software engineering, come straight from the greek language/mythology.

Downloads

17

Readme

greek-in-tech

Learn which words used on modern computing and software engineering, come straight from the greek language / mythology. Visit greekintech.com to read all entries.

Install

npm install @tsevdos/greek-in-tech

or

yarn add @tsevdos/greek-in-tech

Usage

// CommonJS
const GreekInTech = require("@tsevdos/greek-in-tech").default;
const all = require("@tsevdos/greek-in-tech").all;
const random = require("@tsevdos/greek-in-tech").random;
const getEntry = require("@tsevdos/greek-in-tech").getEntry;
// ESM
import GreekInTech, { all, random, getEntry } from "@tsevdos/greek-in-tech";

GreekInTech.all: object[]
all: object[]
//=> All entries.

GreekInTech.random(): object
random(): object
//=> Random entry.

GreekInTech.getEntry(id: number): object
getEntry(id: number): object
//=> Specific entry.

A single entry looks like this:

{
  id: 2,
  title: 'Daemon',
  description: 'The term coined by programmers of MIT\'s Project MAC, was inspired by the physicist James Clerk Maxwell\'s demon. It originated as an imaginary being from a thought experiment that constantly works in the background sorting molecules. In Greek mythology, a daemon is a supernatural being working in the background, with no particular bias towards good or evil. The daemon concept was subsequently adopted by Unix systems, however, BSD and some of its derivatives have used a Christian interpretation of the mythological deamon as their mascot rather than a Greek daemon.',
  categories: [ 'OS', 'unix', 'linux', 'open source' ],
  references: [
    {
      name: 'Wikipedia',
      source: 'https://en.wikipedia.org/wiki/Daemon_(computing)#Etymology'
    }
  ]
}

Contributing

All the entries are located into a single JSON file. Just add your entry, check everything using npm run check and create a pull request.

Related

License

MIT© John Tsevdos