All Projects → simonbs → thingsapp

simonbs / thingsapp

Licence: other
Node module for creating todos in Things.app

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to thingsapp

example-golang-todo
Golang API backend powering a TodoList app
Stars: ✭ 33 (-10.81%)
Mutual labels:  todo
vscode-markdown-todo
Manage todo lists inside markdown files with ease.
Stars: ✭ 21 (-43.24%)
Mutual labels:  todo
demo-ipfs-todo
Simple ToDo app using window.ipfs
Stars: ✭ 16 (-56.76%)
Mutual labels:  todo
To-Do App
A Simple To-Do App With Js
Stars: ✭ 21 (-43.24%)
Mutual labels:  todo
todo
A simple and minimalistic ToDo list manager
Stars: ✭ 18 (-51.35%)
Mutual labels:  todo
grit
Multitree-based personal task manager
Stars: ✭ 1,616 (+4267.57%)
Mutual labels:  todo
elm-simple-gtd
Reimagination of SimpleGTD.com using Elm and Polymer.
Stars: ✭ 24 (-35.14%)
Mutual labels:  todo
lunatask
All-in-one encrypted to-do list, notebook, habit and mood tracker, pomodoro timer, and journaling app
Stars: ✭ 35 (-5.41%)
Mutual labels:  todo
Todo-apollo-redux-react-native
Todo App with apollo + redux + react-native
Stars: ✭ 15 (-59.46%)
Mutual labels:  todo
maker
Maker is a advanced mobile ToDo app for Android and iOS
Stars: ✭ 35 (-5.41%)
Mutual labels:  todo
mindstream
Task management app, built on todo.txt.
Stars: ✭ 33 (-10.81%)
Mutual labels:  todo
mattermost-plugin-todo
Mattermost plugin for tracking to do items
Stars: ✭ 45 (+21.62%)
Mutual labels:  todo
vscode-projects-plus-todo-plus
Bird's-eye view over your projects, view all your todo files aggregated into one.
Stars: ✭ 25 (-32.43%)
Mutual labels:  todo
taskbutler
Create and add progress bars, Office365 Files and Dropbox Paper papers by labels and link them to your Todoist tasks.
Stars: ✭ 44 (+18.92%)
Mutual labels:  todo
styleguide-todo-grammar
/sBin/StyleGuide/ToDo
Stars: ✭ 19 (-48.65%)
Mutual labels:  todo
Todo-List
✔️ Create to-do lists to easily manage your ideas and work.
Stars: ✭ 30 (-18.92%)
Mutual labels:  todo
taskw-dart
Taskwarrior-inspired mobile todo app
Stars: ✭ 58 (+56.76%)
Mutual labels:  todo
todo-app
The app helps you to add todo items to your list, mark completed ones and also delete finished items. Its a handy tool for your day today activies. Check out the live demo.
Stars: ✭ 14 (-62.16%)
Mutual labels:  todo
pomogoro
Text-file based todo time tracking
Stars: ✭ 22 (-40.54%)
Mutual labels:  todo
tododjangoccb
A todo application with django web framework with class based views and ajax modal crud
Stars: ✭ 32 (-13.51%)
Mutual labels:  todo

thingsapp

Node module for creating todos in Things.app by Cultured Code.

Installation

Install using npm install --save git+ssh://[email protected]/simonbs/thingsapp.git.

Usage

When creating an instance of Things, you should pass your account ID and start index. Find these by inspecting HTTP traffic to https://cloud.culturedcode.com using Charles or similar.

The UUID in the requests is your account ID. Consider the following call to the Things Cloud API.

https://cloud.culturedcode.com/version/1/history/THIS-IS-YOUR-ACCOUNT-ID/items?start-index=5612

In above request, THIS-IS-YOUR-ACCOUNT-ID is your account ID and your start index is 5612.

When you have acquired both your account ID and your start index you can use the thingsapp module as shown below.

var todo = {
  title: 'Pack for vacation',
  note: 'GoPro, selfiestick, MacBook charger and tickets'
}
var things = new Things('THIS-IS-YOUR-ACCOUNT-ID', 5612)
things.createTodo(todo, function(err) {
  // Handle errors.
})

In your todo you can set the where key to either inbox or today to specify the location of the todo. Default is the inbox.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].