![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Perform frequency analysis on a js code string
Uses nlp-compromise with nlp-ngram
Install using npm:
$ npm install ngrammer
Node.JS
const ngrammer = require('ngrammer');
const fs = require('fs');
const fileContents = fs.readFileSync('./testfile.js').toString();
/*
options:
- minCount: minimum gram frequency, default: 10
- maxSize: max gram count, default: 3
*/
const ngram = ngrammer(fileContents, { minCount: 10, maxSize: 3 })
/*
[
[
{ word: 'someword', count: 100, size: 1 },
{ word: 'another', count: 90, size: 1 },
{ word: 'etc', count: 80, size: 1 },
...
],
[
{ word: 'two words', count: 30, size: 2 },
{ word: 'some more', count: 20, size: 2 },
{ word: 'etc etc', count: 10, size: 2 },
...
],
...
]
*/
To run the tests:
$ npm test
Feel free to create a pull request.
MIT - see LICENSE
FAQs
Frequency analysis for javascript code
The npm package ngrammer receives a total of 1 weekly downloads. As such, ngrammer popularity was classified as not popular.
We found that ngrammer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.