0.4.0 • Published 8 years ago

platzisearch v0.4.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

Logo de Platzi

Platzisearch — Busca en el blog de Platzi

Características

Instalación

npm install -g platzisearch

Uso

En consola:

npm.io

Javascript API:

import search from 'platzisearch'

async function () {
  const blogposts = await serach('3d touch')
  
  console.log(blogposts[0])
  
  /**
   * Outputs:
   * {
   *   url: 'https://platzi.com/blog/3dtouch-forcetouch-web/',
   *   title: 'Agrega 3D Touch y Force Touch a tus proyectos web',
   *   author: 'Uriel Ramirez',
   *   date: 'marzo 3 2016'
   * }
   */
}