neocities

0.0.3 • Public • Published

NeoCities Node.js Client Library

A node.js library for interacting with the NeoCities api.

Installation

  $ npm install neocities --global

Usage

First, require the library and initialize:

var NeoCities = require('neocities')
var api = new NeoCities('YOURUSERNAME', 'YOURPASSWORD')

Uploading files to your site

// local file path is ./index.js, saved on site as derp.js
 
api.upload([
  {name: 'derp.js', path: './index.js'}
], function(resp) {
  console.log(resp)
})

Deleting files from your site

api.delete(['derp.js'], function(resp) {
  console.log(resp)
})

Get site info (hits, et cetera)

api.info(function(resp) {
  console.log(resp)
})
api.info('youpi', function(resp) {
  console.log(resp)
})

/neocities/

    Package Sidebar

    Install

    npm i neocities

    Weekly Downloads

    22

    Version

    0.0.3

    License

    BSD-2-Clause

    Last publish

    Collaborators

    • kyledrake