🚀 Socket Launch Week 🚀 Day 3: Socket Acquires Coana.Learn More
Socket
Sign inDemoInstall
Socket

ios-keyword-extractor

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

ios-keyword-extractor

extract ios keywords

1.0.3
latest
Source
npm
Version published
Weekly downloads
6
20%
Maintainers
1
Weekly downloads
 
Created
Source

ios-keyword-extractor

How to use it

  • Automatically Sorts All Keywords
  • Plurals Removed
  • Duplicates Removed
  • Put all your exisiting keywords to avoid duplicate keywords
const { extractKeywords } = require("extractKeywords");

const inputTitles = [
  {
    title: "Bulking with Ideal Protein, Super Power",
    subtitle: "Gain weight, muscle, meals",
  },
  {
    title: "Arise Bodybuilding meal plan",
    subtitle: "Body building app, bulq, plate",
  },
];

// My Previous Keywords.. You can give Empty Array
const existingKeywords = [
  "foodnoms",
  "bulk",
  "myprotein",
  "tracking",
  "well",
  "menu",
  "planner",
  "my",
  "fitness",
  "pal",
  "myfitnesspal",
  "calories",
  "diary",
  "macros",
  "clean",
  "simple",
  "eats",
];

const inputKeywords = [
  "Bulking with Ideal Protein, Super Power",
  "planning power hahaha kk",
  "workout",
  "healthy",
  "fitnesspal",
  "fit",
  "fit",
  "fit",
  "fit",
  "fits",
  "fitness",
  "fitnesses",
  "cycling",
  "para",
  "fire",
  "prep",
  "foodnoms",
  "bulk",
  "myprotein",
  "tracking",
  "well",
  "menu",
  "planner",
  "my",
  "fitness",
  "pal",
  "myfitnesspal",
  "calories",
  "diary",
  "macros",
  "clean",
  "simple",
  "eats",
  "intake",
  "strength",
];

const result = extractKeywords(inputTitles, existingKeywords, inputKeywords);
console.log(result);
let totalWordCount = result.reduce((acc, word) => acc + word.length, 0);
console.log(totalWordCount);

Keywords

aso

FAQs

Package last updated on 24 Feb 2024

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