npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

apirestfake

v1.1.1

Published

Fake API REST para proyectos para praticar y consumir datos de ella

Downloads

5

Readme

API REST Fake

Una Servidor API REST Fake para jugar y consumir

APIREST Docker Heroku NPM LICENSE JS Code JS Style GitHub

Descripción

Fake API REST Server pensanda para jugar, consumir datos, etc. Podrás hacer GET, POST, PUT, DELETE, PATCH y recibir códigos de respuesta de acuerdo a los valores que hay y con ello comprobar si tu código de tu app front o móvil funciona correctamente.

Enlaces

Funcionamiento

Tienes varias formas de probar esta API REST Fake:

  • Usando la URL: https://my-json-server.typicode.com/joseluisgs/APIRESTFake. Podrás hacer las operaciones típicas REST/CRUD sobre varios recursos y obetener los códigos de respuesta. Al ser una Fake API REST estática los datos no cambian, siempre tienes disponible la imagen inicial.

  • Usando el despliegue en Heroku, usando la URL: https://apirest-fake.herokuapp.com/ Debes tener en cuenta que como en el caso anterior algunos cambios no sean visible, dado el uso del contenedor en Heroku.

  • Usando NodeJS, para ello solo debes descargarte el proyecto de GitHub, debes tener instalado NodeJS. en el directorio db, como db.json tienes a Base de Datos JSON para utilizarla. Esta sí acepta cambios. Puedes colocar como db.json el fichero que quieras para praticar. Una vez bajado el repositorio, puedes iniciar el servidor de una de estas tres maneras:

$npm start (versón de producción, antes debes hacer $nmp run build)
$npm run dev (versión de desarrollo)
$npm run build y luego $npm start (versión de producción)
$npm run watch (modo observación para ir haciendo cambios en tu código)

⚑ Servidor JSON funcionando ✓ -> http://localhost:6969
⚑ Fake API REST por joseluisgs ✓ -> https://github.com/joseluisgs/APIRESTFake
  • Si no tienes NodeJS, pero tienes Docker, puedes usar el propio Dockerfile existente o alguno de los scripts sh que existen, puedes constrir tú mismo la imagen o pudes usar la disponible en DockerHub: https://hub.docker.com/r/joseluisgs/apirest-fake.
$sh apirest-remote-docker.sh o $sh apirest-local-docker.sh

O Puedes decargarla:
$docker pull joseluisgs/apirest-fake
Y ejecutarla:
$docker run -p 6969:6969 -d --name="apirest-fake"  joseluisgs/apirest-fake:latest

Testing

Se ha implemenatdo una serie de test automatizados para comprobar que la API REST funciona correctamente usando Jest y SuperTest. Para testear puedes hacerlo:

$npm test (modo una vez todo)
$npm test:cover (análisis de cobertura)
$npm run test:users (test sobre users)
$npm run test:server (test sobre server)
$npm test:watch (modo wath de test. Cuidado porque al cambiar BD entr en bucle al detectar cambios)

Recursos adicionales

Autor

José Luis González Sánchez

Twitter

GitHub

Licencia

Este proyecto esta licenciado bajo licencia MIT, si desea saber más, visite el fichero LICENSE para su uso docente y educativo.