Socket
Socket
Sign inDemoInstall

baseamp

Package Overview
Dependencies
37
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    baseamp

Convert your Markdown todo lists to Basecamp Todolists and back


Version published
Weekly downloads
5
decreased by-83.87%
Maintainers
1
Install size
6.83 MB
Created
Weekly downloads
 

Readme

Source

Build Status NPM version Dependency Status Development Dependency Status

baseamp

Convert your Markdown todo lists to Basecamp Todolists and back

Install

Being a commandline tool primarily, Baseamp prefers to be installed globally:

npm install -g baseamp

Use

First set these environment keys:

export BASECAMP_USERNAME="<your private username>"
export BASECAMP_PASSWORD="<your private password>"
export BASECAMP_ACCOUNT_ID="<your private account id (1st number in urls)>"
export BASECAMP_PROJECT_ID="<your private project id (2nd number in urls)>"

WARNING: Use a test project first, Baseamp will overwrite todos in existing projects!

To download (from Basecamp API -> local markdown):

$ baseamp download -
## Bugs (this list should always be emptied first) (#21402412)

 - [ ] TIK Big file upload lists can exceed the assemblies.files database field length: http://support.transloadit.com/discussions/problems/13485-problem-with-assemblies-page-files-display (#133063190)
 - [ ] TIK result: false is ignored if step is piped into a storage step (#133071595)

## Documentation (#21403029)

 - [ ] Add ffmpeg new stack lists, link them, show lists which formats they support and which not directly in the docs, when one should use which and then also show the preset contents for each stack version (#133067237)

...etc...

To upload (from local markdown -> Basecamp API):

To download (from Basecamp API -> local markdown):

$ baseamp sync ./Our-Todos.md

Warning: Sync Behavior & Limitations

Because our two datasources (a markdown file and the basecamp api) weren't really designed to run in sync, Baseamps syncing is far from perfect.

Here are pointers on behavior and things to watch out for.

When uploading, Baseamp:

  • Creates lists & todos that do not exists
  • Updates lists & todos that we already track the (#id) of in markdown text
  • Never deletes something that exist on Basecamp, but not in local markdown, as someone else may have added this item online.

When downloading, Baseamp:

  • Extracts full Todolists of a project, and saves them to a markdown file (or STDOUT), overwriting anything that was already there.
  • Sorts todos within lists alphabetically (completed, due_at, assignee, content)

When syncing, Baseamp:

  • Does a download after an upload, in order to save the IDs locally of newly created todos. Recommended mode of operation. Only works against a local .md file, not with STDIN/OUT

Baseamp cannot sync a todo's attachments or contents, but also won't override them, so you can safely use the webinterface to enrich todos.

There is no concept of sub-todos.

Keep in mind that if you remove 1 item from a list, it can result in position updates for siblings in that list.

During a sync, when there are conflicting values, the local Markdown file is leading. However, Baseamp does not uncomplete remotely completed items as the usecase for that is limited, and this allows people to check off items online.

Use Git too!

If you want to avoid having other values overwritten, keep your Markdown file in Git, and do a download before editting & syncing.

This allows the use of a Makefile such as:

download: install
	git pull
	git add --all .
	git commit -am "Updated todolist" || true
	git push
	source env.sh && node_modules/.bin/baseamp download ./Backup.md
	cp ./Backup.md ./Basecamp.md
	git diff --color | cat || true
	git add --all .
	git commit -am "Downloaded from Basecamp" || true
	git push

sync: install
	@git pull
	@git add --all .
	git commit -am "Updated todolist" || true
	git push
	source env.sh && node_modules/.bin/baseamp download ./Backup.md
	git diff --color | cat || true
	@test -z "$$(git status --porcelain)" || (echo "--> There are remote changes since you were last here. Copy your changes, type 'make download', paste your changes, try sync again. " && false)
	source env.sh && node_modules/.bin/baseamp sync ./Basecamp.md
	git diff --color | cat || true
	@git add --all .
	git commit -am "Synced with Basecamp" || true
	git push

Now if you type make sync in your Git todolist repo, you'll never overwrite remote changes by accident, and you always have a backup in Backup.md.

Todo

  • Support for rate limiter (500 req/10 minutes)
  • Remove unnecessary fat arrows
  • Tests for upload
  • remoteIds should be an instance variable (deal with async scope tho)
  • Summarize changes. Use that to avoid a double Retrieving todolists...
  • Consider the strategy of Markdown files never clearing Basecamp todo properties. E.g. only adding/changing assignees & dates, not clearing them. Not clearing completed == true.
  • Add weekstarter mode, gives a quick overview of Last week / This week
  • Write completed todos at bottom of md list
  • Better positioning
  • Due date mapping
  • User mapping
  • Fix SKIPOSes
  • Figure out how to deal with positioning. One update triggers many remotely.
  • Sync (combining upload, download)
  • Skip uploads if payload is equal
  • [-] Make upload support STDIN
  • Upload
  • Rename download to download, upload to upload
  • Fix download bug duplicating todos over different lists

Contribute

I'd be happy to accept pull requests. If you plan on working on something big, please first give a shout!

Compile

This project is written in CoffeeScript, but the JavaScript it generates is commited back into the repository so people can use this module without a CoffeeScript dependency. If you want to work on the source, please do so in ./src and type: make build or make test (also builds first). Please don't edit generated JavaScript in ./lib!

Test

Run tests via make test.

To single out a test use make test GREP=30x

Development use

source env.sh
DEBUG=Baseamp:* ./bin/baseamp.js download -

source env.sh && make build && DEBUG=Baseamp:* ./bin/baseamp.js sync /tmp/full.md

Or use Makefile shortcuts

make run-download
make run-upload

Release

Releasing a new version to npmjs.org can be done via make release-patch (or minor / major, depending on the semantic versioning impact of your changes). This:

  • updates the package.json
  • saves a release commit with the updated version in Git
  • pushes to GitHub
  • publishes to npmjs.org

Authors

License

MIT Licensed.

Sponsor Development

Like this project? Consider a donation. You'd be surprised how rewarding it is for me see someone spend actual money on these efforts, even if just $1.

Gittip donate button Flattr donate button PayPal donate button BitCoin donate button

Keywords

FAQs

Last updated on 09 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc