Madlibs game with word-type validation using WordsAPI and template generation from Madlibz. Built on the MEAN stack, using Bulma for a fully responsive frontend.
Creation page | User profile page |
---|---|
Single madlib page | Dashboard page |
---|---|
API's used:
- Words API
- Loosely validate word types: noun, verb, adjective
- Madlibz:
- Generate Madlib
- Get word types for word validation/display.
You need to create the public/src/environments/environment.ts
file with an API key for the Words API, like so:
export const environment = {
production: false,
wordsKey: "YOURKEYHERE"
};
Run npm install
in both the ./
and ./public/
folders.
Running this app is a two-step process:
- From the root folder, run
nodemon server.js
- From the
public
folder, runng build
This project was generated with Angular CLI version 8.3.29.