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

codemirror-mongodb

v0.10.3

Published

Use CodeMirror with MongoDB.

Downloads

45

Readme

:construction: codemirror-mongodb travis npm

Use CodeMirror with MongoDB.

Demo

https://mongodb-js.github.io/codemirror-mongodb

Background

I recently took on the project of rewriting the query input for MongoDB Compass. It’s a real pain when writing queries to have to keep the query language and the shape of the data you’re querying against in your working memory. MongoDB users have more important work to do.

Autocompletion for field names is a feature request we hear a lot at MongoDB. We have a sketch in Compass of what the schema probably looks like. Leveraging schema analysis to enable autocompletion is a feature we’ve been wanting to build for a long time.

After weighing my options and researching the existing libraries I could potentially use, I kept coming back to one, CodeMirror.

CodeMirror is the defacto open-source code editor. CodeMirror is used in the devtools for Firefox, Chrome, and Safari, in Light Table, Adobe Brackets, Bitbucket, and over 100 other projects.

Usage

var CodeMirror = require('codemirror');
require('codemirror-mongodb/addon/hint/mongodb-hint');

CodeMirror.fromTextArea(document.getElementById('oneliner'), {
  lineNumbers: false,
  scrollbarStyle: 'null',
  mode: 'javascript',
  autoCloseBrackets: true,
  matchBrackets: true,
  theme: 'mongodb',
  extraKeys: {
    'Ctrl-Space': 'autocomplete',
    'Shift-Enter': 'parse'
  },
  mongodb: {
    fields: {
      _id: 'ObjectId',
      name: 'String',
      age: 'Number',
      number_of_pets: 'Number',
      addresses: 'Array',
      'addresses.street': 'String'
    }
  }
}).on('beforeChange', function formatAsSingleLine(cm, change) {
  if (change.update) {
    var newtext = change.text.join('').replace(/\n/g, '');
    change.update(change.from, change.to, [newtext]);
  }
  return true;
});

React

var React = require('react');
var CodeMirror = require('react-codemirror');
require('codemirror-mongodb/addon/hint/mongodb-hint');

var App = React.createClass({
  getInitialState: function() {
    return {
      code: "{}",
    };
  },
  updateCode: function(newCode) {
    this.setState({
      code: newCode.replace(/\n/g, ''),
    });
  },
  render: function() {
    const options = {
      lineNumbers: false,
      scrollbarStyle: 'null',
      mode: 'javascript',
      autoCloseBrackets: true,
      matchBrackets: true,
      theme: 'mongodb',
      extraKeys: {
        'Ctrl-Space': 'autocomplete'
      },
      mongodb: {
        fields: {
          _id: 'ObjectId',
          name: 'String',
          age: 'Number',
          number_of_pets: 'Number',
          addresses: 'Array',
          'addresses.street': 'String'
        }
      }
    };
    return <CodeMirror value={this.state.code} onChange={this.updateCode} options={options} />
  }
});

React.render(<App />, document.getElementById('app'));

Autocompletion Behavior

below is the user cursor position when autocomplete triggered or the resulting cursor position when a completion is applied.

Current schema of the selected namespace is:

var fields = {
  _id: 'ObjectId',
  name: 'String',
  age: 'Number',
  number_of_pets: 'Number'
};
  • ${fieldPath} A completion for v1
  • ${fieldPath}: █ Maybe nice to add in the future

Blank Slate

Input {█}

Completions

  • _id
  • name
  • age
  • number_of_pets

Extended field based on field type

Input {_id█}

Completions

  • _id
  • _id: ObjectId("█")

List Field Names With Prefix

Input {n█}

2 matching fields

Completions

  • name
  • number_of_pets

Single Field Matched By Name Prefix

Input {na█}

1 matching field so show extended

Completions

  • name
  • name: █ with starter
  • name: "█" open exact match
  • name: /^█/ open prefix regex

Single Field Exact Match By Name

Input {name█}

Still 1 matching field so show extended

Completions

  • name
  • name: █ with starter
  • name: "█" open exact match
  • name: /^█/ open prefix regex

Specify Expression for Field

Input {name: █}

Completions

  • with starter
  • "█" open exact match
  • /^█/ open prefix regex

List Expression Operators for Field

Input {name: {█}}

Completions

  • $gte
  • $gt
  • $lte
  • $lt
  • $eq
  • $ne
  • $type
  • $size
  • $exists
  • $exists: false field not set
  • $exists: true field is set
  • $in
  • $in: ["█"] for strings, $in: [█] for numbers
  • $nin
  • $nin: ["█"] for strings, n$in: [█] for numbers
  • $all

Todo

  • completions are {text, displayText, and className} instead of just strings
  • completions are not just prefixes to current cursor when applied, e.g. Object("█")
  • mode can accept shell js instead of just query
  • Toggle into multi-line mode for really long queries
  • Pretty formatting when in multi-line mode https://codemirror.net/2/demo/formatting.html
  • Extend js linting (see http://codemirror.net/demo/lint.html) to show warning if
    • current query not accepted by mongodb-language-model
    • may miss indexes/have poor performance
    • misspelled field names
    • type mismatch between expression and field type
  • Repl mode
    • https://github.com/sdllc/cmjs-shell
    • https://github.com/azu/codemirror-console-ui
    • https://github.com/PETComputacaoUFPR/skulpt-console

License

Apache 2.0