pulsar/docs
2014-02-23 11:57:20 -08:00
..
advanced Remove deferred package deserializers 2014-02-05 14:46:49 -08:00
building-atom.md Remove cmake dependency 2013-12-04 08:48:45 -08:00
contributing.md Update reference syntax in contributing docs 2014-02-20 16:34:53 -07:00
converting-a-text-mate-bundle.md Use link name 2014-02-13 15:37:09 -08:00
converting-a-text-mate-theme.md Use link name 2014-02-13 15:37:09 -08:00
creating-a-package.md Rename internals directory to advanced 2014-01-21 21:04:33 -07:00
creating-a-theme.md Correct grammar in clone step 2014-02-22 17:26:52 -08:00
customizing-atom.md Mention menus for opening ~/.atom files 2014-02-23 11:57:20 -08:00
getting-started.md Make it more obvious that example argument is a folder 2014-02-22 18:50:56 -08:00
index.md Add contributing guide 2014-02-22 11:50:45 -08:00
publishing-a-package.md Remove stray g 2014-02-13 15:37:10 -08:00
README.md Remove File and Directory 2014-02-19 10:58:14 -08:00
setting-up-travis.md 📝 Mention build-package script and atom-master-builds 2013-12-10 17:37:32 -08:00
template.jst copy docs into atom.io project, don't build guides as they are in the DB 2013-11-04 16:47:12 -08:00
theme-variables.md Address a few more typos 2013-10-30 15:21:51 -07:00
your-first-package.md Lowercase package 2014-02-13 15:37:10 -08:00

Welcome to the Atom API Documentation

Atom

FAQ

Where do I start?

Check out EditorView and Editor classes for a good overview of the main editor API.

How do I access these classes?

Check out the Atom class docs to see what globals are available and what they provide.

You can also require many of these classes in your package via:

{EditorView} = require 'atom'

The classes available from require 'atom' are:

How do I create a package?

You probably want to read the creating a package doc first and come back here when you are done.

Where are the node docs?

Atom ships with node 0.11.10 and the comprehensive node API docs are available here.