New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

proofdict

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

proofdict

Proofdict is a collection of dictionary.

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
1
Created
Source

Proofdict Build Status

Proofdict is a collection of dictionary.

Install

Install with npm:

npm install proofdict

Website

Visit https://proofdict.github.io/

Dictionary format

# `id` is unique string
id: 01BQ92YYBEFBXEHH8T8HC8RCRD
# `description` is a short comment
description: 'Reference https://www.ecma-international.org/publications/standards/Ecma-262.htm'
# `expected` is expected result
# `$1` ... `$9` reference `patterns`'s capture word
# This is same behavior with RegExp https://github.com/zeeshanu/learn-regex 
expected: ECMAScript $1
# `patterns` are match string or RegExp
# RegExp should be started with `/` and be ended with `/`
# Also, can use `()` for capturing
patterns:
  - /ECMAScript([0-9]+)/i
  - /ECMA Script([0-9]+)/i
# `specs` are test cases
# `specs[n].from` is actual word
# `specs[n].to` is expected word that is replaced result
specs:
  - from: ECMASCRIPT5
    to: ECMAScript 5
# `tags` are keywords
# Some `tag` means special meaning
tags:
  - noun
  - JavaScript

Special tag

Some tag means special meaning

noun

noun needs strict match because idiom is not same meaning the noun.

Example: WebKit

Generally, /webkit/i match node-webkit, but that dict is not match node-webkit. Because, The dict has noun tag.

Steps:

  • /webkit/i match the text *1
  • If /[-\w]webkit/i or /webkit[-\w]/i also match the text, ignore this*1
id: 01BQ92YZ6QR8RJKA5Y8W2F9NMY
description: 'Reference https://webkit.org/'
expected: WebKit
patterns:
  - /webkit/i
specs:
  - from: This is webkit
    to: This is WebKit
  - from: XXXwebkit
    to: XXXwebkit
  - from: node-webkit
    to: node-webkit
tags:
  - noun

opinion

opinion is opinion dictionary.

API

Get the dictionary as JSON

Node module

const { getProofdict, fetchProofdict} = require("proofdict");
// get local dictionary data.
console.log(getProofdict());
/*
[
    {
        "id": "01BQ92YYBJQ3A865VJ3ASRPCHB",
        "description": "",
        "expected": ".js $1",
        "patterns": [
            "/.js([.0-9]+)/"
        ],
        "specs": [],
        "tags": [
            "JavaScript"
        ]
    },
    ...
]
*/

// fetch latest dictionary data from https://proofdict.github.io/proofdict/dict.json
fetchProofdict().then(dictionaries => { 
    console.log(dictionaries)
});
   

Changelog

See Releases page.

Running tests

Install devDependencies and Run npm test:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome.

For bugs and feature requests, please create an issue.

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request :D

Author

License

MIT © azu

Keywords

dict

FAQs

Package last updated on 20 Aug 2017

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