Survey tool meteor js (like limesurvey)

Is there a good survey tool such as limesurvey.org, which is suitable for meteor js? Should be possible to use without third party.

I made one for a former client (for internal use) , that i’m not at liberty to give away code to, however it’s pretty straightforward stuff…
autoform (survey admins can create surveys by creating schema documents) , the accounts-base and accounts-password packages,
alanning:roles to define the survey admins, the survey taking guests (sent email invitations with login tokenized link) and the stakeholders whom the survey was prepared for (giving them inline-svg bar-graphs and additional d3 (well, c3) generated charting)…
the basic decision is either anononymous (public?) or invited survey, and then the survey itself is a document that set’s the schema for the survey input form the users see and one examines the results from accumulating lots of these secondary documents…

1 Like

oh, and the survey results are largely filtered on the client, to find out things like averages etc…

thanks @vectorselector. This sound like a good approach. Will give it a try.