Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ceifa/plagium
- Owner: ceifa
- Created: 2021-12-20T16:08:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-25T13:51:47.000Z (almost 3 years ago)
- Last Synced: 2024-10-07T06:06:30.324Z (about 1 month ago)
- Topics: javascript, nodejs, plagiarism, plagiarism-checker, plagiarism-detection
- Language: TypeScript
- Homepage:
- Size: 37.1 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
})
```