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

todo-endpoint

v1.0.1

Published

A development endpoint for when you are doing a todo application.

Downloads

5

Readme

todo-endpoint

This is a package that can be used to setup a basic todo-application. It provides a very basic backend where you can GET, POST and DELETE todo items. It will save all todos in a file under /db/todos.json. If you decide to use this package in production, please change profession.

Installation

To install this package in your package you can fetch it from npm, like this:

npm install --save todo-endpoint

Then just run it by calling it, either directly or in a script:

Directly, in your prompt:

./node_modules/.bin/todo-endpoint

Create a script for it:

{
  ...
  "scripts": {
    "start": "todo-endpoint"
  },
  "
}

npm start

Options

The only real option is to set the port on which to run the server. It defaults to 3000, but the first and only argument can be another port:

./node_modules/.bin/todo-endpoint 5000

Once you start it you will have a server running on (by default) http://localhost:3000 with one endpoint, http://localhost:3000/todo.

API References:

The todo object looks like this:

{
  id: 0,
  title: '',
  description: '',
  timeStamp: 0
}

GET

/todo

Fetches all available todo items

fetch('http://localhost:3000/todo').then(todos => {
  // Do something with the todo items!
});

/todo/:todoId

Fetches a todo item with a matching id

fetch('http://localhost:3000/todo/12').then(todo => {
  // Do something with the todo item!
});

POST

/todo

Saves or updates a todo item. If the items "id" property is set, an update will be performed, otherwise a save.

// Save
const newItem = {
  title: 'Test',
  description: 'This is clearly a test todo item'
};

fetch('http://localhost:3000/todo', {
  method: 'post',
  body: JSON.stringify(newItem)
}).then((newId) => {
  // Do something after the save...
});

// Update
const newItem = {
  id: 5,
  title: 'Test',
  description: 'This is clearly a test todo item'
};

fetch('http://localhost:3000/todo', {
  method: 'post',
  body: JSON.stringify(newItem)
}).then((currentId) => {
  // Do something after the save...
});

DELETE

/todo/:todoId

Deletes a todo item permanently

fetch('http://localhost:3000/todo/3', {
  method: 'delete'
}).then(() => {
  // Do something after the delete...
});

Contribute

If you want to contribute to this repository just make a PR and I'll check it as soon as possible. If you want to help out with administrating it, just mess me and we'll set it up!