Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 779 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 779 Bytes

Fragments

Fragments is a cloud-based microservice for working with small pieces of text, JSON data, and images.

How it works

Demo

Installation

  1. Clone this repository from GitHub.

  2. Use the package manager npm to install Fragments.

npm install

Development

Finding problems with the code

npm run lint

Starting the server

  • Running the server normally:
npm start
npm run start
  • Running the server via nodemon (automatically watches for changes and restarts the server whenever something is updated):
// For basic use:
npm run dev

// For debugging:
npm run debug