Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ceifa/plagium

A simple plagiarism detector based on google search
https://github.com/ceifa/plagium

javascript nodejs plagiarism plagiarism-checker plagiarism-detection

Last synced: 18 days ago
JSON representation

A simple plagiarism detector based on google search

Awesome Lists containing this project

README

        

# Plagium

A package to get a plagiarism score from documents.

# API Usage

```js
import { getPlagiarismScore } from 'plagium'

// Will return a number between 0 and 1
const score: number = await getPlagiarismScore({
text, // The document text to be checked
languageCode, // pt-BR it's the only available right now
googleApiKey, // Google API key
googleEngineId, // Google engine Id
})
```