@mongodb-js/compass-crud
TypeScript icon, indicating that this package has built-in type declarations

13.24.1 • Public • Published

Compass CRUD Plugin

Provide functionality shown in the "Documents" tab in the Collection view in Compass. compass-crud

Usage

Definitions

Key Description
CRUD.Document Renders a single document.
CRUD.DocumentList Renders a list of documents.

Actions

Key Description
CRUD.Actions All the CRUD related actions.

Stores

Key Description
CRUD.InsertDocumentStore Triggers when a document is inserted.
CRUD.ResetDocumentListStore Triggers when the query filter is reset.
CRUD.LoadMoreDocumentsStore Triggers when more documents are fetched via scrolling.

Components from this plugin can be interracted with using hadron-app and hadron-app-registry. Here are a few examples of working with compass-crud's Action and Roles.

Render an editable document in a React component.

const app = require('hadron-app');
const React = require('react');

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.Document = app.appRegistry.getRole('CRUD.Document')[0].component;
  }
  render() {
    return <this.Document doc={this.props.document} editable />;
  }
}

Render a non-editable pre-expanded document in a React component.

const app = require('hadron-app');
const React = require('react');

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.Document = app.appRegistry.getRole('CRUD.Document')[0].component;
  }
  render() {
    return <this.Document doc={this.props.document} expandAll />;
  }
}

Listen to the various CRUD actions.

const app = require('hadron-app');
const CrudActions = app.appRegistry.getAction('CRUD.Actions');

CrudActions.documentRemoved.listen((id) => {
  console.log(`Document with _id ${id} removed.`);
});

CrudActions.openInsertDocumentDialog((doc, clone) => {
  if (clone) {
    console.log('Opening insert dialog with cloned document');
  }
});

CrudActions.insertDocument((doc) => {
  console.log('Inserting document into db');
});

App Registry Events Emmitted

Various actions within this plugin will emit events for other parts of the application can be listened to via hadron-app-registry. Local events are scoped to a Tab. Global events are scoped to the whole Compass application.

Global

  • 'document-view-changed', view: indicates document view changed. view can be either JSON, List, or Table.
  • 'documents-paginated': indicates when pagination is complete. Called when calling the next or previous pages in pagination.
  • 'documents-refreshed': indicates documents were refreshed.
  • 'document-inserted': indicates documents were inserted. Called when insertMany and insertOne complete.
  • 'document-updated': indicates a document was updated.
  • 'document-deleted': indicates a document was deleted.

Local

  • 'document-view-changed', view: indicates document view changed. view can be either JSON, List, or Table.
  • 'documents-paginated': indicates when pagination is complete. Called when calling the next or previous pages in pagination.
  • 'documents-refreshed': indicates documents were refreshed.
  • 'document-inserted': indicates documents were inserted. Called when insertMany and insertOne complete.
  • 'document-updated': indicates a document was updated.
  • 'document-deleted': indicates a document was deleted.

App Registry Events Received

Local

  • 'import-finished': received when import in the import-export plugin is finished. Refreshes documents.
  • 'query-changed': received when query was changed in the query bar. Handles updates to crud plugin's query state, and refreshes documents.
  • 'refresh-data': received when other plugins need documents refreshed. Refreshes documents.

Global

  • 'instance-refreshed': received when compass instance was refreshed
  • 'refresh-data': received when other plugins need documents refreshed. Refreshes documents. (reloaded). Refreshes instance state: dataLake variables.

Metrics Events

  • document-view-changed
  • documents-paginated
  • documents-refreshed
  • document-inserted
  • document-updated
  • document-deleted

Development

Code Tour

Compass Crud uses React, and Reflux for state management. There are two stores we manage: crud-store(./src/stores/crud-store.js) and grid-store(./src/stores/grid-store.js). Overall structure of this repo:

  • ./dist: webpack-compiled version of this plugin.
  • ./scripts: scripts to link and unlink React version to compass when developing this locally in Compass.
  • ./src/actions: reflux actions that are available throughout this plugin.
  • ./src/assets: css assets, such as variables and styles from compass.
  • ./src/components: react components that make up this plugin. Almost all components have a .jsx, .spec.js, .less and .js files.
  • ./src/stores: home to reflux stores.
  • ./src/utils: util .js files to be used throughout the plugin.

Install

npm install -S @mongodb-js/compass-crud

See Also

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa180experimental
13.24.112latest
0.0.0-next-4384d1fb0545d3f19fa808079b2b78538a3277a82next

Version History

VersionDownloads (Last 7 Days)Published
0.0.0-next-4384d1fb0545d3f19fa808079b2b78538a3277a82
0.0.0-next-c9c4cc6402a40f9fffa2559bf521e5dd967cb76f2
0.0.0-next-befaedd11aee7cec6575a48aff3f6a7bdd5cbdf70
0.0.0-next-f7d2c3c921044145d0292e1f07c97ce7f94a8e060
0.0.0-next-f57da4e1a20907fbd470b811a7505f971ce250dc0
0.0.0-next-c653a02b759eea0dd8f9282430647865cb6347980
0.0.0-next-463afb9f9cc5ec0b09ef304c16175250fe4fd2300
0.0.0-next-18d819f32623e39723029572917ed7ec3582e8f90
0.0.0-next-1365e35f7dcbce95255ffbc3b0ea1c16a35d16df0
0.0.0-next-ccfba41be5f88faca7b60d1257a5f7453065df520
0.0.0-next-b2395030fbddfdc7f7e0ec8d1aff0d598af0a34d0
0.0.0-next-2a59e5c14bbde75ffee2132903d65ba75d789b680
0.0.0-next-6d8869f4c4d995bf09c8b362459771e314b9b7e00
13.24.112
0.0.0-next-d6a40f26c10ad1486efd5b390af588ecc889dcfc0
0.0.0-next-9fb29c061a0fe490ca580252e2a6d7cd302188610
0.0.0-next-c9aae855e6bfbf05dce4edf61eb54f2250103a430
0.0.0-next-954f19560b2c2579dad030f813bc98839b7d4a7f0
0.0.0-next-d5f2a30488e3b4980be600677c19b91b7f57f6630
0.0.0-next-14235391f207267041e7d13a94d2f5f7c4533df00
0.0.0-next-68ed9b98ea3414b21332c7136ae08b184360bed20
0.0.0-next-030d7d9be66549d2d599c3cb639a8f2257c18c0b0
0.0.0-next-9875e528c977e4fa0b5249132ea9c804c6353b1d0
0.0.0-next-6fee25b6b54bd285296097cc4fdd881fc1fafe330
0.0.0-next-e1009598ad1b41ebe9fe3ce3895750f40585b2ab2
0.0.0-next-d941c66244c58e7a5e3728b9e4fcc95d261d33720
0.0.0-next-6fbe8a9b981377909c773b52e34500b4a295f78a0
13.23.40
0.0.0-next-b57a0d0f48a2f70baab4de515eb244e9f175af030
0.0.0-next-fb4a1f2a7bd24298659048854c23ace5519cc4c80
0.0.0-next-d90fd184099f7a6db7e49aaa29682226747349f60
0.0.0-next-1db0743edd6ac8df4890b12aa54b4c024f9f036a0
13.23.30
13.23.10
13.23.00
0.0.0-next-8d43c9ed459ca8994e20a2e7918e493722e3d7f30
0.0.0-next-f48c76c0ba4b3698461312ba0ebfa6f4b1794a8d0
13.22.00
0.0.0-next-d91959672b4492495da06396b1fe1fae500455d30
0.0.0-next-02e16dae03331f9ee549ad5f3d837fffe67c6a352
0.0.0-next-8e433903d42d1541aa5d7823bb725b80485101f90
0.0.0-next-da7eb234194adb21dc4a89ace09aa0eb0e7b8d7c0
0.0.0-next-4bf2666c3c75b06e3938404ea13476581ba3dadf0
0.0.0-next-76a38f1ee24bd6af6ac92999972305ab8da659580
0.0.0-next-07331315b06d55836838906095b6b50eb1a1f07f0
13.21.50
0.0.0-next-32daaa8d01bdbff324dee16c4c41c862b94117a50
0.0.0-next-86bb8c06a42c24b7f8b12c2c9575a1a145337c3f0
0.0.0-next-def618cd7030e12226db1575221504961c26d43e0
0.0.0-next-c5c89848df7182ae762840d5fb5d8a4cefade1890
0.0.0-next-892ea9363def9decb46464fcb9b654b2e47484660
13.21.40
13.21.30
13.21.20
0.0.0-next-a39a661edf19844c3d6dd82f0954527504e8d85e0
13.21.10
0.0.0-next-027f8a3b23cf15c7c592ce82b59ba9007ea856020
0.0.0-next-4ff0971da3c38503219da9f56c10a239be9159240
13.21.00
0.0.0-next-2e35e6b13fef4e4bc279576cf670d5b2614c38440
0.0.0-next-aa419229934bdfe721879961a333bd6236deee700
0.0.0-next-8fe70a43ab4c8035d59ca4803f8c28ec957a10910
0.0.0-next-68f1973a3c275c6985a161db77c810ab187bd2290
0.0.0-next-6f122ee399c9854a658e00f2564aec2053acb0411
0.0.0-next-85485a28fd177c9774dbe595f83bab00b1ebbeb40
0.0.0-next-d3d1c1d3cacc133f6181b84cd4c74f1334a3ce170
0.0.0-next-8a5885c1fe28baad3b6d1e32b9763113c1ce22a90
0.0.0-next-68d544d11ad6fdad02d93fe36714c06c35871ec60
0.0.0-next-d6f3df0b6003bde4b59866fd4aceaa6e80fa65920
0.0.0-next-a1c61e50bb5e8026e7dfd9aebe1b799e78146ed00
0.0.0-next-c7da735c993b0c4bb31311d9c77ff8e9e69d69d00
0.0.0-next-411e5d6bd1f9dd27c41a57a6e146cbd8a598a4260
0.0.0-next-ce1ef9f7b69beb6bb21106881d2fbe34e2ac7a650
0.0.0-next-a2bd0bacdbc2c1b2df6a8954cff7cc30230e59020
0.0.0-next-91f4a8569cfa6962401170d6957e0e3e7bf671f90
0.0.0-next-44a322bda4395ebce9d7a9f6362838f8bdec9f980
0.0.0-next-92c3e3dcb90b35deff1a56407569109a8bd599ba0
13.20.00
0.0.0-next-25b247aaca2b0905914a1f7c9be8c95a03105af20
13.19.00
0.0.0-next-c787db5509648c04a843991556d9d2f4af0e3db50
0.0.0-next-66c8fdb992d1b198c3bf466d26557fad7c07ce6f0
0.0.0-next-cee363136ee8baab7aa567f07e53397d4d675b060
0.0.0-next-2e570e900c8cfebe6b8a71836625a93a09b0fb2b0
0.0.0-next-815a9523acc6d1d5b8d6915733c0efd73b07f19c0
0.0.0-next-d4718d787a720daa2afe348586e50a6b5290b3022
13.18.00
0.0.0-next-a3a765b8a2457aa8562be3af9f2f755fd1be90aa0
0.0.0-next-5e0f57dd302ef5eabbd37620486555acb6882e340
0.0.0-next-d0fe8cf246ab893bfae05a0941840b638672f57b0
0.0.0-next-6cc3d9a460c4539d3da48d68c1b9c1216b0c3dcc0
0.0.0-next-62adbfcecf2134bdaa98a668b0b500f56d55a2b10
0.0.0-next-02aa0f0abe5d3aa20b3d77cd2477a07a8e0f46170
0.0.0-next-866405a3be1f3099170c431ff70ba91aea257f6f0
0.0.0-next-209ee55da1068b23a95fc33baa027ccb6f0d45f80
0.0.0-next-b75076ddf6df546b91f5dcbefc7027c76d125ee30
0.0.0-next-146e50dcef71726518d7552adb57591b582cad030
0.0.0-next-a74a2c0a01602330621dc040c90a1c22b88b47120
0.0.0-next-8566541ae253821a2c7fcb369523b89809734e170
0.0.0-next-ad6ef329eb4b33392b7035415d828ffafeaf26630
0.0.0-next-b9a1141b650f8853b5d35de1a96ef00e7d2a49560
0.0.0-next-78b63863d630aa62bfb5885b5d04955d89ab53ca0
0.0.0-next-f03a734c931d3ae5bb2fbbc0c71a3301ad5090550
13.17.00
0.0.0-next-38304ec41860ecc28b28750ff7953af01d3acab30
0.0.0-next-a36325fff093dfd12e94527b9612bd00ec6be62f0
13.16.00
0.0.0-next-6f2aed093ac068de248315f28c6d2c5aaa86e4790
0.0.0-next-66099aca6d44a6ad8298511bab8e402d430babd30
0.0.0-next-3e38d04842590a493696eb1a9ec7a0212edbf2d20
13.15.10
0.0.0-next-524975291f79e48f255115160d110fc497177de10
0.0.0-next-dcd723b26f4b3f47816852b0a2eb0319b2fd21bd0
0.0.0-next-592aa0529cee017b88d6897b1440bb7585ea5b350
0.0.0-next-9b425fd45a4b63459945b34bda0efee55e7537050
0.0.0-next-8298bda0fdcb7de59b3153c36cf0b60c585c009b0
0.0.0-next-4d0e65954ff82d6acf17b3591b06ec4de66b79770
13.15.00
0.0.0-next-6351f727447205cf2c402c9786084d710a4b2fb60
0.0.0-next-69151f1cbaff4886cc4e85eaacaaf1b0ff732a2a0
0.0.0-next-8c769bace514d2dfa8f746c1f0ba776bdcad6aa20
0.0.0-next-15d1ce3ae0eb77de3a5aeedcae94be76de15bbdd0
0.0.0-next-fa3b3c1e9ca43b4f990838f3f5e9572a57a950650
0.0.0-next-031c3f252815794b46c0bb7abc6d07ee615441490
0.0.0-next-da76e43124b2d90c0fce9c7e10cbc987844ba6fd0
0.0.0-next-ce2d840fae1dc45497a70c8e2c0936ca0ee6e5070
0.0.0-next-ba552b8f02c4e17a5199123179285b0f901500ed0
0.0.0-next-cbdafc9e81fd9a69c759de6e5c32c012b0630fff0
0.0.0-next-8596ab85d14da42f23f30aa220a34f2e6b42d91f0
0.0.0-next-c7780d05684110c7f41111fba1fdba57ba9d3af60
0.0.0-next-91ec641e8e0114d6898011b33f611b5801c2b3010
0.0.0-next-afee5c48dabf3b11ed0ee36a4560b5d39742fccf0
0.0.0-next-b76ea7dd6d7035734d31099bf67212f5618704310
0.0.0-next-ddf20a787276e2cabbc08ce1398f1fce6e0eb8770
0.0.0-next-b9d1b050e736987814241466b7ae98c8b90f78c60
0.0.0-next-e3ab55df3d9c7526ace255b80a850c980360f6240
0.0.0-next-1ceaaedb84012831172d67fb88467eb502b644ec0
0.0.0-next-736565d38c93cd4784109245b444d2e7c00448f40
0.0.0-next-57f25336acf5cbe3e29cf6b0888aa66b301a79f02
0.0.0-next-3397cf2034f38edff9966d3d395d6db5171a8a010
0.0.0-next-a23fde8b4d153893414b717423f0e48e00f69a360
0.0.0-next-a31253f4ecb1eeb0002086ffa7439d7c46bb393a0
0.0.0-next-a19dd157e511b26b229f75f9f7f44e9ca5c5821c0
0.0.0-next-594f9426128c681b581d58a0296a930de42e04040
0.0.0-next-7c0d46a8b62b1a87e52aee93af870b973ab31fb80
0.0.0-next-9b1f2d362ef8d184ce07224a21e077e04963f70f0
13.14.00
0.0.0-next-5b945c038c434227f3c4a202cedfb1cc6e4be7580
0.0.0-next-86b4aeaaa12e8e1dec71b2f7baab3ffb56dd76730
0.0.0-next-14b6e6a507f82ae562968219d65b22ddd81ce9890
0.0.0-next-c9014c9995a8d4a0e6e12cdf9244dc8230a2ee5e0
0.0.0-next-73df2f6505237399543ede6a6a90ff5c5905004d0
0.0.0-next-a390314895b5775ce5b6013d339bf1b26528236d0
0.0.0-next-aed5b72ee832ec7d7e5b3516a6d27979250471fd0
0.0.0-next-75b346b5f8c4bc9252af65ae3c65b97c6cc47d000
13.13.00
0.0.0-next-563a1c01cb8412a6765ed36b9e63883c40ccfd1f0
0.0.0-next-9650ec9fd93b8dd78848a772fad56196ce5cda990
0.0.0-next-9c2af84b4c5ea44fe3240bb8e878763c289402aa0
0.0.0-next-1b60150d81dce329b2f0f5c76277a455d79933ec0
0.0.0-next-d4784fcb34a3145f96a0c778a1bc3c786e1cc7740
0.0.0-next-b7fec801851465307d84e2b4b6361da5ab1b43540
0.0.0-next-c25c1e64414b91293a923472d34a42f70b1660440
0.0.0-next-0b7bdbac2841bb29f779dc118427209fea404a6b0
0.0.0-next-b53158d1a4cfaa42b802a8e10059a81778b5ea8b0
13.12.00
13.11.10
13.11.00
0.0.0-next-5bb899576d8b95cb24b170e4fb80a7a4cc89beac0
0.0.0-next-1d0257ec5ae772888fbfb677bbacf8cd7dfb31270
0.0.0-next-a7eb730693b63501028444f9ef6b634620af6e370
0.0.0-next-835937ee6a94b541fd12d3d0c54d829fb2d0e4920
0.0.0-next-99faf39dcaa3321ec39c2a4a4c7b67e04f3c753e0
0.0.0-next-f0a5a0fe0d39e23cbafd19676a6f8bc00f4480b50
0.0.0-next-3ddf2b32a13c98a8713916c7c20185f8ae9a93270
0.0.0-next-a6a1fbc898ffbe115f44ef184f30cf0d9348f9c20
0.0.0-next-58b07e3b9faef89f8f737552ca57d6db6e0ea5030
0.0.0-next-80a9e175edd3eabee53daee876d77943872e42050
0.0.0-next-e35a108a54700c3d0f1f8d937fe870db23cb16820
0.0.0-next-a163d3eea7baaadc9ff00f56212f6befadf68cc10
0.0.0-next-b308d1e92f7e65f426e7cdde2c630c5eb26cd4e10
0.0.0-next-b2733835a3b65a4990e1af518669453fad1aba040
0.0.0-next-1d02bfb24078b4391bee7a83e34cb3d7da39a7310
0.0.0-next-5dfa7c0dfa9690d09de616d9a4839fde1ab0e4670
13.10.00
0.0.0-next-5e0eb3ba4d40569bc6acb4383f7c85221ebc81fa0
13.9.00
0.0.0-next-5d4d8579be24c292424443140492919b337a3b280
0.0.0-next-c2ee6dc98a012b4f4494e197ec69ca57d395b8fa0
0.0.0-next-2d8cfc600e1d4de8c32643b601d0c021734b31ed0
0.0.0-next-e182f845553cf87006baf04d22367061288c52260
0.0.0-next-2bd69249c64bee9c103212c46e5c582418f870540
0.0.0-next-0189b6f6005b078db9424856c7565117e3b45ef30
0.0.0-next-28d3c6ea9e684b19e4fcfd38c8b4e94fba06844f0
0.0.0-next-3871489afff599d3c0e5827b05c6cd97787625bb0
0.0.0-next-07a892207f0c33a49a10f047b8e98d59fb1df6760
0.0.0-next-5965a9bfaeadf7fcf283dfd3fe19aa58f68c5c1c0
0.0.0-next-f8695ae3010acc2686c0a530f153ebb01ddb040a0
0.0.0-next-35420eb38f659fbfc4bff9e72644deebafef275e0
0.0.0-next-604fdbd72ed8b3cb7869997416b51ea07fd774000
13.8.00
0.0.0-next-259fb95ccf1d41c3210676266488d0705f9b544e0
0.0.0-next-1f064ba7669c838cc646f440aedd0cf45c4df9730
0.0.0-next-30478c108fea9fe7d84759fb032faee28e0bbfbb0
0.0.0-next-da0d016fdae6992001ca3f3347c293c36815df430
0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d3210
0.0.0-next-a863ce6adfb98ced08f9644a294f5b63b110c7d80
0.0.0-next-97c3945c3938ec09f9aa141b791f53d15bd476000
0.0.0-next-ed8f90bd71f084cb541f99b15caf3833ec6a953c0
0.0.0-next-04ba59a8ace9d68fd90d540d8a8936985115e22e0
0.0.0-next-e0e7275f55471eecce19ff3b75439fb06dce1fad0
13.7.00
0.0.0-next-7675c98b3881009dcc19690b66a6e63e65e1a13c0
13.6.00
0.0.0-next-9acb1d074fcbf6aa34b275f617178f0f155ff4950
0.0.0-next-014cd3f52319f9c3e62d458f4c10e0af7ae980520
13.5.30
0.0.0-next-3b389244f7eb06219ec1e923cac29b45a6ec3e840
0.0.0-next-3e67b8063fbcd84b0bfd6451e2568968fbdba25a0
0.0.0-next-6e4c984eb458cbfc675ec138ae979303ef32bcb50
0.0.0-next-cfe9a829fd77fc84e090f2c7b38663167071ebc50
13.5.20
13.5.10
13.5.00
0.0.0-next-288585a9b69e86c5bb1bfcf4b6df1f5db45ad7bf2
0.0.0-next-b72d7d0f94c6cd6b83966a08494549408ed565600
0.0.0-next-d09be9dbbff785d6692110b819e06b0186bd3ac70
0.0.0-next-f6dcd616f47e1d3843402c3e0f47d541edec53f30
0.0.0-next-cb3371cdb3289f37402f09c6388269e88c943a810
0.0.0-next-3888dd701d06bedcc2b043270c5dc626b9997eb00
0.0.0-next-0d9e77c42a99b49fd4ecc7167d0c769866f92ef20
0.0.0-next-d43728ce0cf99f511bd2d2aebad966bc492761790
0.0.0-next-1336f6ccd01a8b5f63ed6bea289fa9f8fc4d95570
0.0.0-next-faf899c161858cffa138dc64f4fbf9c0da2145e00
0.0.0-next-2f189f8218b434e8d36a7472a2ac843f17147b9b0
0.0.0-next-6a5d526328ecfce1da82bf064daeb19f1c2bf6a50
0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a0
13.4.00
0.0.0-next-94f03d5249971d1eea1868df296db6e766f40f9f0
0.0.0-next-f9347a106881d77aa4b1f7f37daed25d73c5f92c0
0.0.0-next-74685ebe9d7b81dd4a870c8ffd511526227415260
0.0.0-next-8d44ba9084fbf5b834ca7df8b77135d3c8fc68960
0.0.0-next-e06434c386fd387cc5650fc9c0906b46cb4d6c340
0.0.0-next-b5a88ca5d89936f4997a6df7c6e08614f25de0a10
0.0.0-next-bb1a39e78c30cda5ef910174e54d2c97081863880
0.0.0-next-6e34a0d07479c665cdfa3bddb6bfd864365f6b8a0
0.0.0-next-112bf8f8b20d7181824478f76e627ee32d6e03d70
0.0.0-next-6a646700444fec2ae51cd86f87f6a29e58f774b00
0.0.0-next-981f8ae49e299320ca0add5ae8e58c8738baa6990
0.0.0-next-c31c6db319e5099ee073b5782609b1dcfa2370d80
0.0.0-next-2122563cf622c0d212372dee10ec2a4a664d80060
0.0.0-next-c12720c09369b6620405de027fa85d469db43e9c0
0.0.0-next-91daa029e219b08cf0b775b6648d35867f2272d00
0.0.0-next-9e3b266e199e346a30e2c20aac373d48c2ea98880
0.0.0-next-47b085701d7c0b212b54bcac46f6106d34ec429e0
0.0.0-next-3b50f8232d3349fe79554f36417d7fbb45b6352a0
0.0.0-next-44318443f2cd1088082181789b25fc26a7a11bb20
0.0.0-next-6d1491390706ac21857752412a5e4d10e112a29a0
0.0.0-next-51a8e00f16dc1652cb0f0674c540570614a8895e0
0.0.0-next-5f5cecf01c890c348e17907482b03cea2f8c5f210
0.0.0-next-bfa0f33f79b0349abe5ad03576e17682f507fe040
0.0.0-next-ea4f317e964c0504e54c01d83c385280a9135bba0
0.0.0-next-59e1f6f134da2a3417bd69a71c7788320608ee5d0
0.0.0-next-10815be8fd57f3bfd89d061e1592eb7136d4a0fb0
13.3.00
0.0.0-next-4216a27cdf41425fff35938bb42040bb93c2d2460
0.0.0-next-1cb9ea1724d90e58422b33fe089df5b774e0be100
0.0.0-next-d9691f3c8230e21aeb2817ac2c984aba0d79f09c0
0.0.0-next-cd3c5c1303c464ef7900dc08adb8154d15c7f3a90
0.0.0-next-01a3ac56d52443bc859ccdcf7ed301ffbdea7a470
0.0.0-next-e42d58083be39ce9f112e6ec7f9fd1fdcb666e3e0
0.0.0-next-dfa464112f63969f158bde32322e393fa2b779400
0.0.0-next-25b11de63d51aa4ca7fda0f3eae67999e3418ca50
13.2.00
0.0.0-next-e30a9e850a8a66b70770fbf6658a3e35cf1ff8b80
0.0.0-experimental-1c53312ce4905234885618d41ae95fde9c21aa180
13.1.10
13.0.00
12.27.10
12.27.00
12.26.00
12.25.00
12.24.00
12.23.00
12.22.00
12.21.00
12.20.00
12.19.20
12.19.10
12.19.00
12.18.10
12.18.00
12.17.00
12.16.00
12.15.00
12.14.00
12.13.00
12.12.00
12.11.00
12.10.00
12.9.00
12.8.40
12.8.30
12.8.20
12.8.10
12.8.00
12.7.00
12.6.00
12.5.00
12.4.00
12.3.00
12.2.20
12.2.10
12.2.00
12.1.00
12.0.00
11.3.10
11.3.00
11.2.00
11.1.10
11.1.00
11.0.20
11.0.10
11.0.00
10.1.40
10.1.30
10.1.20
10.1.10
10.1.00
10.0.50
10.0.40
10.0.30
10.0.20
10.0.10
10.0.00
9.0.80
9.0.70
9.0.60
9.0.50
9.0.40
9.0.30
9.0.20
9.0.10
9.0.00
8.3.00
8.2.00
8.1.50
8.1.40
8.1.30
8.1.20
8.1.10
8.1.00
8.0.20
8.0.10
8.0.00
7.1.70
7.1.60
7.1.50
7.1.40
7.1.30
7.1.20
7.1.10
7.1.00
7.0.40
7.0.30
7.0.20
7.0.10
7.0.00
6.3.50
6.3.40
6.3.30
6.3.20
6.3.10
6.3.00
6.2.70
6.2.60
6.2.50
6.2.40
6.2.30
6.2.20
6.2.10
6.2.00
6.1.20
6.1.10
6.1.00
6.0.237
6.0.10
6.0.00
5.6.30
5.6.20
5.6.10
5.6.00
5.5.00
5.4.00
5.3.80
5.3.70
5.3.50
5.3.40
5.3.30
5.3.20
5.3.10
5.3.00
5.2.10
5.2.00
5.1.20
5.1.10
5.1.00
5.0.00
4.1.20
4.1.10
4.1.00
4.0.00
3.1.70
3.1.60
3.1.50
3.1.30
3.1.20
3.1.10
3.1.00
3.0.50
3.0.40
3.0.30
3.0.20
1.2.40
3.0.10
3.0.00
2.0.100
2.0.90
2.0.80
2.0.70
2.0.60
2.0.50
2.0.40
2.0.30
2.0.20
2.0.10
2.0.00
1.6.10
1.6.00
1.5.00
1.4.00
1.3.00
1.2.30
1.2.21
1.2.11
1.2.00
1.1.50
1.1.40
1.1.30
1.1.20
1.1.10
1.1.00
1.0.00
0.10.00
0.7.50
0.9.10
0.9.00
0.8.00
0.7.40
0.7.30
0.7.20
0.7.10
0.7.00
0.6.00
0.5.10
0.5.00
0.5.0-50
0.5.0-41
0.5.0-30
0.5.0-20
0.5.0-10
0.4.20
0.5.0-00
0.4.10
0.4.00
0.3.00
0.3.0-00
0.2.20
0.2.10
0.2.00
0.1.10
0.1.00
0.0.60
0.0.50
0.0.40
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i @mongodb-js/compass-crud

Weekly Downloads

65

Version

13.24.1

License

SSPL

Unpacked Size

3.27 MB

Total Files

101

Last publish

Collaborators

  • nirinchev
  • dbx-node
  • nbbeeken
  • orechova
  • himanshusinghs
  • c-buckingham
  • mongo-j
  • mabaasit
  • alexander_schroll
  • mongodb-js-user
  • rueckstiess
  • durran
  • lerouxb
  • fredtruman
  • mbroadst
  • hswolff
  • satyasinha
  • matt_d_rat
  • rhysm
  • tomhollander
  • alena.khineika
  • jeff-allen-mongo
  • mmarcon
  • jonathan.balsano
  • mongodb-build
  • jack.weir
  • mcasimir
  • kristina.stefano
  • jarjee
  • shaketbaby
  • devtoolsbot
  • addaleax
  • gribnoysup
  • mutukrish